OrgHumanResourceMapper.java 671 B

12345678910111213141516171819202122232425
  1. package com.goafanti.common.dao;
  2. import java.util.List;
  3. import com.goafanti.common.model.OrgHumanResource;
  4. public interface OrgHumanResourceMapper {
  5. int deleteByPrimaryKey(String id);
  6. int insert(OrgHumanResource record);
  7. int insertSelective(OrgHumanResource record);
  8. OrgHumanResource selectByPrimaryKey(String id);
  9. int updateByPrimaryKeySelective(OrgHumanResource record);
  10. int updateByPrimaryKey(OrgHumanResource record);
  11. OrgHumanResource selectOrgHumanResourceByUserId(String uid);
  12. int batchDeleteByPrimaryKey(List<String> id);
  13. OrgHumanResource selectOrgHumanResourceByUidAndYear(Integer year, String uid);
  14. }