whycrzg
2021-02-23 351b9a53cb9ecebdf8f79db0117f540d9c42c2a4
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// package com.fgkj.mapper.impl;
//
// import java.sql.ResultSet;
// import java.util.List;
//
// import com.fgkj.mapper.BaseDAO;
// import com.fgkj.mapper.CallBack;
//
// import com.fgkj.db.DBUtil;
// import com.fgkj.dto.App_Sys;
//
// @Deprecated
// public class App_SysImpl implements BaseDAO,CallBack{
//
//     public List getResults(ResultSet rs) {
//         // TODO Auto-generated method stub
//         return null;
//     }
//
//     public boolean add(Object obj) {
//         // TODO Auto-generated method stub
//         return false;
//     }
//     //电池组信息添加修改和删除不重启主程序,只修改AppServer_Reinit_BattGroupData_EN值为false
//     public boolean update(Object obj) {
//         App_Sys as=(App_Sys) obj;
//         String sql=" update db_app_sys.tb_app_sys set AppServer_Reinit_BattGroupData_EN=? ";
//         boolean bl=DateUtil.executeUpdate(DBUtil.getConn(), sql, new Object[]{as.getAppServer_Reinit_BattGroupData_EN()});
//         return bl;
//     }
//
//     public boolean del(Object obj) {
//         // TODO Auto-generated method stub
//         return false;
//     }
//
//     public List searchAll() {
//         // TODO Auto-generated method stub
//         return null;
//     }
//
//     public List serchByCondition(Object obj) {
//         // TODO Auto-generated method stub
//         return null;
//     }
//
//     public List serchByInfo(Object obj) {
//         // TODO Auto-generated method stub
//         return null;
//     }
//
// }