| 1234567891011121314151617181920212223242526272829 |
- package cn.com.goldenwater.dcproj.dao;
- import cn.com.goldenwater.core.persistence.CrudDao;
- import cn.com.goldenwater.dcproj.model.TacPblmRectOrg;
- import cn.com.goldenwater.dcproj.param.TacPblmRectOrgParam;
- import org.apache.ibatis.annotations.Param;
- import org.springframework.stereotype.Repository;
- @Repository
- public interface TacPblmRectOrgDao extends CrudDao<TacPblmRectOrg, TacPblmRectOrgParam> {
- int updateBy(TacPblmRectOrg tacPblmRectOrg);
- /**
- * 更新下发文件为空
- *
- * @param id
- * @return
- */
- int setFileNull(@Param("id") String id);
- /**
- * 更新反馈附件为空
- *
- * @param id
- * @return
- */
- int setRectFileNull(@Param("id") String id);
- }
|