af4a6486a393711ed129a35fadc56a4b79b047d5.svn-base 725 B

1234567891011121314151617181920212223242526272829
  1. package cn.com.goldenwater.dcproj.dao;
  2. import cn.com.goldenwater.core.persistence.CrudDao;
  3. import cn.com.goldenwater.dcproj.model.TacPblmRectOrg;
  4. import cn.com.goldenwater.dcproj.param.TacPblmRectOrgParam;
  5. import org.apache.ibatis.annotations.Param;
  6. import org.springframework.stereotype.Repository;
  7. @Repository
  8. public interface TacPblmRectOrgDao extends CrudDao<TacPblmRectOrg, TacPblmRectOrgParam> {
  9. int updateBy(TacPblmRectOrg tacPblmRectOrg);
  10. /**
  11. * 更新下发文件为空
  12. *
  13. * @param id
  14. * @return
  15. */
  16. int setFileNull(@Param("id") String id);
  17. /**
  18. * 更新反馈附件为空
  19. *
  20. * @param id
  21. * @return
  22. */
  23. int setRectFileNull(@Param("id") String id);
  24. }