1505d5eb7b9864cf33d3b19c4b28d75298fb9854.svn-base 618 B

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