| 12345678910111213141516171819202122232425 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.dto.AttOtherBaseDtos;
- import cn.com.goldenwater.dcproj.model.AttOtherBase;
- import cn.com.goldenwater.dcproj.param.AttOtherBaseParam;
- import com.github.pagehelper.PageInfo;
- import java.util.List;
- /**
- * @author lune
- * @date 2019-7-19
- */
- public interface AttOtherBaseService extends CrudService<AttOtherBase, AttOtherBaseParam> {
- int insertList(AttOtherBaseDtos dtos);
- PageInfo getBasePageInfoNotInFsc(AttOtherBaseParam attOtherBaseParam);
- int updateOtherBase(AttOtherBase attOtherBase);
- // ------------------------- 自定方法 -------------------------
- }
|