OrgHumanResourceService.java 654 B

1234567891011121314151617181920212223
  1. package com.goafanti.user.service;
  2. import java.util.List;
  3. import com.goafanti.common.model.OrgHumanResource;
  4. import com.goafanti.core.mybatis.page.Pagination;
  5. public interface OrgHumanResourceService {
  6. Pagination<OrgHumanResource> listOrgHumanResource(Integer year, Integer pageNo, Integer pageSize, String uid);
  7. OrgHumanResource insert(OrgHumanResource orgHumanResource);
  8. int updateByPrimaryKeySelective(OrgHumanResource orgHumanResource);
  9. int batchDeleteByPrimaryKey(List<String> id);
  10. OrgHumanResource selectOrgHumanResourceByUidAndYear(Integer year, String uid);
  11. OrgHumanResource selectByPrimaryKey(String id);
  12. }