| 12345678910111213141516171819 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.TacActiveLog;
- import cn.com.goldenwater.dcproj.param.TacActiveLogParam;
- import com.github.pagehelper.PageInfo;
- import java.util.List;
- /**
- * @author lune
- * @date 2019-10-17
- */
- public interface TacActiveLogService extends CrudService<TacActiveLog, TacActiveLogParam> {
- // ------------------------- 自定方法 -------------------------
- void addTacLog(String name, String content, String registrId, String type, String state,String stepId, String note, String persId);
- }
|