| 12345678910111213141516171819 |
- package cn.com.goldenwater.dcproj.service;
- import cn.com.goldenwater.core.service.CrudService;
- import cn.com.goldenwater.dcproj.model.AttInspTypeDuty;
- import cn.com.goldenwater.dcproj.param.AttInspTypeDutyParam;
- import com.github.pagehelper.PageInfo;
- import java.util.List;
- /**
- * @author lhc
- * @date 2021-7-14
- */
- public interface AttInspTypeDutyService extends CrudService<AttInspTypeDuty, AttInspTypeDutyParam> {
- String[] arrayByOrgId(String orgId);
- }
|