1.来函信息展示,新增,修改,审核,取消审核,删除,条件查询

2.翻译配置文件中添加来函页面的中英翻译
This commit is contained in:
zhanghongqing
2018-02-08 17:34:47 +08:00
parent f725141d11
commit 1febb8a107
10 changed files with 845 additions and 130 deletions

View File

@@ -0,0 +1,34 @@
package com.nis.web.dao.configuration;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.nis.domain.configuration.RequestInfo;
import com.nis.web.dao.CrudDao;
import com.nis.web.dao.MyBatisDao;
@MyBatisDao
public interface RequestInfoDao extends CrudDao {
List<RequestInfo> findRequestInfo(RequestInfo requestInfo);
RequestInfo getRequestInfoByRequestNumber(@Param("requestNumber") String requestNumber);
RequestInfo getRequestInfoById(@Param("id") Long id);
int deleteByPrimaryKey(Long id);
int insertSelective(RequestInfo requestInfo);
RequestInfo selectByPrimaryKey(Long id);
int updateByPrimaryKeySelective(RequestInfo requestInfo);
int updateByPrimaryKey(RequestInfo requestInfo);
}