|
@@ -61,7 +61,7 @@ public class TsystemInfoService {
|
|
|
}
|
|
|
public Pagination<TsystemInfoDto> findTsystemInfoList(String deptid,TsystemInfoDto dto,
|
|
|
Pagination<TsystemInfoDto> pag, Map<String, Object> searchParameters,User userInfo) {
|
|
|
- StringBuffer sql=new StringBuffer("select p.creator,p.isgq,p.iskj,p.systemtype,p.sys_name,p.sys_id,p.sys_detail,p.sys_dept_id,p.sys_dept_name,p.systemstate,p.networktype,p.sys_usedetail,p.bushuaddr,p.create_time from t_system_info p ");
|
|
|
+ StringBuffer sql=new StringBuffer("select p.creator,p.isgq,p.iskj,p.systemtype,p.sys_name,p.sys_id,p.sys_detail,p.sys_dept_id,p.sys_dept_name,p.systemstate,p.networktype,p.sys_usedetail,p.bushuaddr,p.create_time,p.sys_num from t_system_info p ");
|
|
|
List<String> paramList=new ArrayList<String>();
|
|
|
|
|
|
if("".equals(deptid)){
|
|
@@ -196,6 +196,7 @@ public class TsystemInfoService {
|
|
|
info.setIsgq(rs.getString("isgq"));
|
|
|
info.setIskj(rs.getString("iskj"));
|
|
|
info.setCreatetime(rs.getString("create_time"));
|
|
|
+ info.setSysNum(rs.getString("sys_num"));
|
|
|
busitemList = tbusinessItemService.findTbusinessItemListBySysId(rs.getString("sys_id")) ;
|
|
|
info.setBusitemList(busitemList);
|
|
|
Map map = jdbcTemplate.queryForMap("select count(1) csmls from t_infoclass t where latestversion='1' and exists (select * from t_systeminfo_infoclass p where p.infoclass_id=t.id and systeminfo_id=?)", new Object[] {rs.getString("sys_id")});
|