576ab28e05f69c4e4989aaa7b4799dfa6546e981.svn-base 1.1 KB

1234567891011121314151617181920212223242526272829
  1. package cn.com.goldenwater.dcproj.dao;
  2. import cn.com.goldenwater.dcproj.model.AttPersRs;
  3. import cn.com.goldenwater.dcproj.model.AttRsBase;
  4. import cn.com.goldenwater.dcproj.model.AttSwhsBase;
  5. import cn.com.goldenwater.dcproj.param.AttSwhsBaseParam;
  6. import cn.com.goldenwater.core.persistence.CrudDao;
  7. import cn.com.goldenwater.dcproj.param.PersObjParam;
  8. import org.apache.ibatis.annotations.Param;
  9. import org.springframework.stereotype.Repository;
  10. import java.util.List;
  11. @Repository
  12. public interface AttSwhsBaseDao extends CrudDao<AttSwhsBase, AttSwhsBaseParam> {
  13. String getMaxCwsCode(String adCode);
  14. List<AttSwhsBase> findListBy(PersObjParam persObjParam);
  15. int updateLevelByCode(AttSwhsBase base);
  16. List<AttSwhsBase> getObjByPersId(PersObjParam persObjParam);
  17. List<AttSwhsBase> getObjListNotInspGroupId(@Param("inspGroupId") String inspGroupId, @Param("objType") String objType,
  18. @Param("adName") String adName, @Param("adCode") String adCode, @Param("province") String province);
  19. AttSwhsBase getObjId(@Param("objId")String objId);
  20. }