XMTT преди 8 години
родител
ревизия
696dd6ccc9
променени са 2 файла, в които са добавени 6 реда и са изтрити 224 реда
  1. 5 223
      src/main/java/com/ekexiu/console/system/dao/ConsultDao.java
  2. 1 1
      src/main/java/com/ekexiu/console/system/service/ConsultService.java

+ 5 - 223
src/main/java/com/ekexiu/console/system/dao/ConsultDao.java

@ -4,17 +4,14 @@ import com.ekexiu.console.system.pojo.ConsultInfo;
4 4
import org.jfw.apt.annotation.Nullable;
5 5
import org.jfw.apt.orm.annotation.dao.DAO;
6 6
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
7
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
7 8
import org.jfw.apt.orm.annotation.dao.method.operator.QueryList;
8 9
import org.jfw.apt.orm.annotation.dao.method.operator.QueryOne;
10
import org.jfw.apt.orm.annotation.dao.param.Like;
9 11
import org.jfw.util.PageQueryResult;
10 12
11
import java.math.BigDecimal;
12 13
import java.sql.Connection;
13
import java.sql.PreparedStatement;
14
import java.sql.ResultSet;
15 14
import java.sql.SQLException;
16
import java.util.ArrayList;
17
import java.util.Collections;
18 15
import java.util.List;
19 16
20 17
/**
@ -27,224 +24,9 @@ public abstract class ConsultDao {
27 24
    @OrderBy("ORDER BY CREATE_TIME DESC")
28 25
    public abstract List<ConsultInfo> query(Connection con) throws SQLException;
29 26
30
    public PageQueryResult<ConsultInfo> pageQuery(Connection con, String consultantName, String professorName, String consultTitle, Integer consultStatus, int pageSize, int pageNo) throws SQLException {
31
        int index = 0;
32
        PageQueryResult<ConsultInfo> queryResult = new PageQueryResult<ConsultInfo>();
33
        int paramIndex = 1;
34
        boolean b1 = null == consultStatus;
35
        StringBuilder sql = new StringBuilder();
36
        sql.append(" WHERE consultant_name LIKE ? AND professor_name LIKE ? AND consult_title LIKE ? ");
37
        if (!b1) {
38
            sql.append(" AND consult_status = ?");
39
        }
40
        StringBuilder sbql = sql;
41
        sql = new StringBuilder();
42
        sql.append(" select count(1) from (SELECT p.name as professor_name,o.name as professor_org,pp.name as consultant_name,oo.name as consultant_org,c.CONSULT_ID,c.CONSULT_TYPE,c.CONSULT_TITLE,c.CONSULT_CONTANT,c.PROFESSOR_ID,c.CONSULTANT_ID,c.CONSULT_STATUS,c.FINISH_TIME,c.ASSESS_STATUS,c.ASSESS_STAR,c.ASSESS_CONTANT,c.ASSESS_TIME,c.THANKS_STATUS,c.THANKS_MONEY,c.THANKS_TIME,c.REVOVERY_TIME,c.READ_STATUS,c.DEMAND_ID,c.CREATE_TIME FROM consult c LEFT JOIN professor p on c.professor_id = p.id LEFT JOIN professor pp on c.consultant_id = pp.id LEFT JOIN organization o on o.id = p.org_id LEFT JOIN organization oo on oo.id = pp.org_id ORDER BY CREATE_TIME DESC)as view_consult ");
43
        sql.append(sbql);
44
        PreparedStatement ps = con.prepareStatement(sql.toString());
45
        try {
46
            ps.setString(paramIndex++, consultantName);
47
            ps.setString(paramIndex++, professorName);
48
            ps.setString(paramIndex++, consultTitle);
49
            if (!b1) {
50
                ps.setInt(paramIndex++, consultStatus);
51
            }
52
            queryResult.setPageSize(pageSize);
53
            ResultSet resultSet = ps.executeQuery();
54
            try {
55
                resultSet.next();
56
                index = resultSet.getInt(1);
57
            } finally {
58
                try {
59
                    resultSet.close();
60
                } catch (Exception e) {
61
                }
62
            }
63
        } finally {
64
            try {
65
                ps.close();
66
            } catch (Exception e) {
67
            }
68
        }
69
        queryResult.setTotal(index);
70
        if (0 == index) {
71
            queryResult.setPageNo(1);
72
            queryResult.setData(Collections.<ConsultInfo>emptyList());
73
            return queryResult;
74
        }
75
        paramIndex = 1;
76
        boolean b2 = (1 == pageNo);
77
        if (b2) {
78
            queryResult.setPageNo(1);
79
            sql = new StringBuilder();
80
            sql.append(" WHERE pp.name LIKE ? AND p.name LIKE ? AND c.consult_title LIKE ? ");
81
            if (!b1) {
82
                sql.append(" AND c.consult_status = ?");
83
            }
84
            StringBuilder stringBuilder = sql;
85
            sql = new StringBuilder();
86
            sql.append(" SELECT p.name as professor_name,o.name as professor_Org,pp.name as consultant_Name,oo.name as consultant_Org,c.CONSULT_ID,c.CONSULT_TYPE,c.CONSULT_TITLE,c.CONSULT_CONTANT,c.PROFESSOR_ID,c.CONSULTANT_ID,c.CONSULT_STATUS,c.FINISH_TIME,c.ASSESS_STATUS,c.ASSESS_STAR,c.ASSESS_CONTANT,c.ASSESS_TIME,c.THANKS_STATUS,c.THANKS_MONEY,c.THANKS_TIME,c.REVOVERY_TIME,c.READ_STATUS,c.DEMAND_ID,c.CREATE_TIME FROM consult c LEFT JOIN professor p on c.professor_id = p.id LEFT JOIN professor pp on c.consultant_id = pp.id LEFT JOIN organization o on o.id = p.org_id LEFT JOIN organization oo on oo.id = pp.org_id ");
87
            sql.append(stringBuilder);
88
            sql.append(" ORDER BY CREATE_TIME DESC ");
89
            sql.append(" LIMIT ").append(pageSize);
90
        } else {
91
            int pno = index / pageSize;
92
            if (index % pageSize != 0) {
93
                ++pno;
94
            }
95
            if (pageNo > pno) {
96
                pageNo = pno;
97
            }
98
            queryResult.setPageNo(pageNo);
99
            --pageNo;
100
            int offset = (pageNo * pageSize);
101
            sql = new StringBuilder();
102
            sql.append(" WHERE pp.name LIKE ? AND p.name LIKE ? AND c.consult_title LIKE ? ");
103
            if (!b1) {
104
                sql.append(" AND c.consult_status = ?");
105
            }
106
            StringBuilder stringBuilder = sql;
107
            sql = new StringBuilder();
108
            sql.append(" SELECT p.name as professor_name,o.name as professor_Org,pp.name as consultant_Name,oo.name as consultant_Org,c.CONSULT_ID,c.CONSULT_TYPE,c.CONSULT_TITLE,c.CONSULT_CONTANT,c.PROFESSOR_ID,c.CONSULTANT_ID,c.CONSULT_STATUS,c.FINISH_TIME,c.ASSESS_STATUS,c.ASSESS_STAR,c.ASSESS_CONTANT,c.ASSESS_TIME,c.THANKS_STATUS,c.THANKS_MONEY,c.THANKS_TIME,c.REVOVERY_TIME,c.READ_STATUS,c.DEMAND_ID,c.CREATE_TIME FROM consult c LEFT JOIN professor p on c.professor_id = p.id LEFT JOIN professor pp on c.consultant_id = pp.id LEFT JOIN organization o on o.id = p.org_id LEFT JOIN organization oo on oo.id = pp.org_id ");
109
            sql.append(stringBuilder);
110
            sql.append(" ORDER BY CREATE_TIME DESC ");
111
            sql.append(" LIMIT ").append(pageSize).append(" OFFSET ").append(offset);
112
        }
113
        ps = con.prepareStatement(sql.toString());
114
        try {
115
            ps.setString(paramIndex++, consultantName);
116
            ps.setString(paramIndex++, professorName);
117
            ps.setString(paramIndex++, consultTitle);
118
            if (!b1) {
119
                ps.setInt(paramIndex++, consultStatus);
120
            }
121
            ResultSet rs = ps.executeQuery();
122
            try {
123
                List<ConsultInfo> consultInfos = new ArrayList<ConsultInfo>();
124
                queryResult.setData(consultInfos);
125
                int indx = 0;
126
                while ((indx < pageSize) && rs.next()) {
127
                    ++indx;
128
                    ConsultInfo consultInfo = new ConsultInfo();
129
                    String pName = rs.getString(1);
130
                    if (rs.wasNull()) {
131
                        pName = null;
132
                    }
133
                    consultInfo.setProfessorName(pName);
134
                    String pOrg = rs.getString(2);
135
                    if (rs.wasNull()) {
136
                        pOrg = null;
137
                    }
138
                    consultInfo.setProfessorOrg(pOrg);
139
                    String cName = rs.getString(3);
140
                    if (rs.wasNull()) {
141
                        cName = null;
142
                    }
143
                    consultInfo.setConsultantName(cName);
144
                    String cOrg = rs.getString(4);
145
                    if (rs.wasNull()) {
146
                        cOrg = null;
147
                    }
148
                    consultInfo.setConsultantOrg(cOrg);
149
                    String cId = rs.getString(5);
150
                    if (rs.wasNull()) {
151
                        cId = null;
152
                    }
153
                    consultInfo.setConsultId(cId);
154
                    String consultType = rs.getString(6);
155
                    if (rs.wasNull()) {
156
                        consultType = null;
157
                    }
158
                    consultInfo.setConsultType(consultType);
159
                    String cTitle = rs.getString(7);
160
                    if (rs.wasNull()) {
161
                        cTitle = null;
162
                    }
163
                    consultInfo.setConsultTitle(cTitle);
164
                    String consultContant = rs.getString(8);
165
                    if (rs.wasNull()) {
166
                        consultContant = null;
167
                    }
168
                    consultInfo.setConsultContant(consultContant);
169
                    String pId = rs.getString(9);
170
                    if (rs.wasNull()) {
171
                        pId = null;
172
                    }
173
                    consultInfo.setProfessorId(pId);
174
                    String consultantId = rs.getString(10);
175
                    if (rs.wasNull()) {
176
                        consultantId = null;
177
                    }
178
                    consultInfo.setConsultantId(consultantId);
179
                    Integer cStatus = rs.getInt(11);
180
                    if (rs.wasNull()) {
181
                        cStatus = null;
182
                    }
183
                    consultInfo.setConsultStatus(cStatus);
184
                    String finishTime = rs.getString(12);
185
                    if (rs.wasNull()) {
186
                        finishTime = null;
187
                    }
188
                    consultInfo.setFinishTime(finishTime);
189
                    Integer assessStatus = rs.getInt(13);
190
                    if (rs.wasNull()) {
191
                        assessStatus = null;
192
                    }
193
                    consultInfo.setAssessStatus(assessStatus);
194
                    Integer assessStar = rs.getInt(14);
195
                    if (rs.wasNull()) {
196
                        assessStar = null;
197
                    }
198
                    consultInfo.setAssessStar(assessStar);
199
                    String assessContant = rs.getString(15);
200
                    if (rs.wasNull()) {
201
                        assessContant = null;
202
                    }
203
                    consultInfo.setAssessContant(assessContant);
204
                    String assessTime = rs.getString(16);
205
                    if (rs.wasNull()) {
206
                        assessTime = null;
207
                    }
208
                    consultInfo.setAssessTime(assessTime);
209
                    Integer thanksStatus = rs.getInt(17);
210
                    if (rs.wasNull()) {
211
                        thanksStatus = null;
212
                    }
213
                    consultInfo.setThanksStatus(thanksStatus);
214
                    BigDecimal thanksMoney = rs.getBigDecimal(18);
215
                    if (rs.wasNull()) {
216
                        thanksMoney = null;
217
                    }
218
                    consultInfo.setThanksMoney(thanksMoney);
219
                    String thanksTime = rs.getString(19);
220
                    if (rs.wasNull()) {
221
                        thanksTime = null;
222
                    }
223
                    consultInfo.setThanksTime(thanksTime);
224
                    consultInfo.setRevoveryTime(rs.getString(20));
225
                    consultInfo.setReadStatus(rs.getInt(21));
226
                    String demandId = rs.getString(22);
227
                    if (rs.wasNull()) {
228
                        demandId = null;
229
                    }
230
                    consultInfo.setDemandId(demandId);
231
                    consultInfo.setCreateTime(rs.getString(23));
232
                    consultInfos.add(consultInfo);
233
                }
234
                return queryResult;
235
            } finally {
236
                try {
237
                    rs.close();
238
                } catch (Exception e) {
239
                }
240
            }
241
        } finally {
242
            try {
243
                ps.close();
244
            } catch (Exception e) {
245
            }
246
        }
247
    }
27
    @PageQuery
28
    @OrderBy(" ORDER BY create_time DESC")
29
    public abstract PageQueryResult<ConsultInfo> pageQuery(Connection con, @Nullable @Like String consultantName, @Nullable @Like String professorName,@Nullable @Like String consultTitle,@Nullable Integer consultStatus, int pageSize, int pageNo) throws SQLException;
248 30
249 31
    @Nullable
250 32
    @QueryOne

+ 1 - 1
src/main/java/com/ekexiu/console/system/service/ConsultService.java

@ -33,7 +33,7 @@ public class ConsultService {
33 33
34 34
    @Get
35 35
    @Path("/qa")
36
    public PageQueryResult<ConsultInfo> query(@JdbcConn Connection con, @Nullable @Like String consultantName, @Nullable @Like String professorName, @Nullable @Like String consultTitle, @Nullable @Like Integer consultStatus, @DefaultValue("1") int pageSize, @DefaultValue("10") int pageNo) throws SQLException {
36
    public PageQueryResult<ConsultInfo> query(@JdbcConn Connection con, @Nullable @Like String consultantName, @Nullable @Like String professorName, @Nullable @Like String consultTitle, @Nullable Integer consultStatus, @DefaultValue("1") int pageSize, @DefaultValue("10") int pageNo) throws SQLException {
37 37
        String cName ="%";
38 38
        if(consultantName!=null)
39 39
        {