|
@ -2,15 +2,11 @@ package com.ekexiu.portal.dao;
|
2
|
2
|
|
3
|
3
|
import java.sql.Connection;
|
4
|
4
|
import java.sql.SQLException;
|
5
|
|
import java.util.List;
|
6
|
5
|
|
7
|
|
import org.jfw.apt.annotation.Nullable;
|
8
|
6
|
import org.jfw.apt.orm.annotation.dao.DAO;
|
9
|
7
|
import org.jfw.apt.orm.annotation.dao.method.From;
|
10
|
8
|
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
|
11
|
9
|
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
|
12
|
|
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
|
13
|
|
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
|
14
|
10
|
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
|
15
|
11
|
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
|
16
|
12
|
|
|
@ -42,18 +38,159 @@ public abstract class OperationDao {
|
42
|
38
|
@From(Operation.class)
|
43
|
39
|
public abstract int updatePayMethod(Connection con, String operationId, String payMethod) throws SQLException;
|
44
|
40
|
|
45
|
|
@Nullable
|
46
|
|
@SelectOne
|
47
|
|
public abstract Operation query(Connection con, String operationId) throws SQLException;
|
|
41
|
public com.ekexiu.portal.po.Operation query(java.sql.Connection con,java.lang.String operationId) throws java.sql.SQLException{
|
|
42
|
int _m_1 = 1;
|
|
43
|
String sql = "SELECT REPLY_NOTES,OPERATION.CREATE_TIME,OPERATION_ID,OPERATION_STATUS,DEMAND_ID,DETAIL_DEMAND,DELIVER_TIME,OPERATION.RESOURCE_ID,DEAL_PRICE,DEAL_TIME,PAY_METHOD,PROFESSOR.NAME,RESOURCE_NAME FROM OPERATION INNER JOIN PROFESSOR ON DEMAND_ID = PROFESSOR.ID INNER JOIN RESOURCE ON OPERATION.RESOURCE_ID = RESOURCE.RESOURCE_ID WHERE OPERATION_ID = ?";
|
|
44
|
java.sql.PreparedStatement ps = con.prepareStatement(sql);
|
|
45
|
try{
|
|
46
|
ps.setString(_m_1++,operationId);
|
|
47
|
java.sql.ResultSet rs = ps.executeQuery();
|
|
48
|
try{
|
|
49
|
if(rs.next()){
|
|
50
|
com.ekexiu.portal.po.Operation _result = new com.ekexiu.portal.po.Operation();
|
|
51
|
_result.setReplyNotes(rs.getString(1));
|
|
52
|
_result.setCreateTime(rs.getString(2));
|
|
53
|
_result.setOperationId(rs.getString(3));
|
|
54
|
_result.setOperationStatus(rs.getInt(4));
|
|
55
|
Professor professor = new Professor();
|
|
56
|
professor.setId(rs.getString(5));
|
|
57
|
_result.setDetailDemand(rs.getString(6));
|
|
58
|
_result.setDeliverTime(rs.getString(7));
|
|
59
|
Resource resource = new Resource();
|
|
60
|
resource.setResourceId(rs.getString(8));
|
|
61
|
_result.setDealPrice(rs.getBigDecimal(9));
|
|
62
|
_result.setDealTime(rs.getString(10));
|
|
63
|
_result.setPayMethod(rs.getString(11));
|
|
64
|
professor.setName(rs.getString(12));
|
|
65
|
_result.setProfessor(professor);
|
|
66
|
resource.setResourceName(rs.getString(13));
|
|
67
|
_result.setResource(resource);
|
|
68
|
return _result;
|
|
69
|
}else{
|
|
70
|
return null;
|
|
71
|
}
|
|
72
|
}finally{
|
|
73
|
try{rs.close();}catch(Exception _m_2){}
|
|
74
|
}
|
|
75
|
}finally{
|
|
76
|
try{ps.close();}catch(Exception _m_3){}
|
|
77
|
}
|
|
78
|
}
|
48
|
79
|
|
49
|
|
@SelectList
|
50
|
|
public abstract List<Operation> query(Connection con) throws SQLException;
|
|
80
|
public java.util.List<com.ekexiu.portal.po.Operation> query(java.sql.Connection con) throws java.sql.SQLException{
|
|
81
|
String sql = "SELECT REPLY_NOTES,OPERATION.CREATE_TIME,OPERATION_ID,OPERATION_STATUS,DEMAND_ID,DETAIL_DEMAND,DELIVER_TIME,OPERATION.RESOURCE_ID,DEAL_PRICE,DEAL_TIME,PAY_METHOD,PROFESSOR.NAME,RESOURCE_NAME FROM OPERATION INNER JOIN PROFESSOR ON DEMAND_ID = PROFESSOR.ID INNER JOIN RESOURCE ON OPERATION.RESOURCE_ID = RESOURCE.RESOURCE_ID";
|
|
82
|
java.sql.PreparedStatement ps = con.prepareStatement(sql);
|
|
83
|
try{
|
|
84
|
java.sql.ResultSet rs = ps.executeQuery();
|
|
85
|
try{
|
|
86
|
java.util.List<com.ekexiu.portal.po.Operation> _result = new java.util.ArrayList<com.ekexiu.portal.po.Operation>();
|
|
87
|
while(rs.next()){
|
|
88
|
com.ekexiu.portal.po.Operation _obj = new com.ekexiu.portal.po.Operation();
|
|
89
|
_obj.setReplyNotes(rs.getString(1));
|
|
90
|
_obj.setCreateTime(rs.getString(2));
|
|
91
|
_obj.setOperationId(rs.getString(3));
|
|
92
|
_obj.setOperationStatus(rs.getInt(4));
|
|
93
|
Professor professor = new Professor();
|
|
94
|
professor.setId(rs.getString(5));
|
|
95
|
_obj.setDetailDemand(rs.getString(6));
|
|
96
|
_obj.setDeliverTime(rs.getString(7));
|
|
97
|
Resource resource = new Resource();
|
|
98
|
resource.setResourceId(rs.getString(8));
|
|
99
|
_obj.setDealPrice(rs.getBigDecimal(9));
|
|
100
|
_obj.setDealTime(rs.getString(10));
|
|
101
|
_obj.setPayMethod(rs.getString(11));
|
|
102
|
professor.setName(rs.getString(12));
|
|
103
|
_obj.setProfessor(professor);
|
|
104
|
resource.setResourceName(rs.getString(13));
|
|
105
|
_obj.setResource(resource);
|
|
106
|
_result.add(_obj);
|
|
107
|
}
|
|
108
|
return _result;
|
|
109
|
}finally{
|
|
110
|
try{rs.close();}catch(Exception _m_1){}
|
|
111
|
}
|
|
112
|
}finally{
|
|
113
|
try{ps.close();}catch(Exception _m_2){}
|
|
114
|
}
|
|
115
|
}
|
51
|
116
|
|
52
|
|
@SelectList
|
53
|
|
public abstract List<Operation> queryPro(Connection con, String demandId) throws SQLException;
|
|
117
|
public java.util.List<com.ekexiu.portal.po.Operation> queryPro(java.sql.Connection con,java.lang.String demandId) throws java.sql.SQLException{
|
|
118
|
int _m_1 = 1;
|
|
119
|
String sql = "SELECT REPLY_NOTES,OPERATION.CREATE_TIME,OPERATION_ID,OPERATION_STATUS,DEMAND_ID,DETAIL_DEMAND,DELIVER_TIME,OPERATION.RESOURCE_ID,DEAL_PRICE,DEAL_TIME,PAY_METHOD,PROFESSOR.NAME,RESOURCE_NAME FROM OPERATION INNER JOIN PROFESSOR ON DEMAND_ID = PROFESSOR.ID INNER JOIN RESOURCE ON OPERATION.RESOURCE_ID = RESOURCE.RESOURCE_ID WHERE DEMAND_ID = ?";
|
|
120
|
java.sql.PreparedStatement ps = con.prepareStatement(sql);
|
|
121
|
try{
|
|
122
|
ps.setString(_m_1++,demandId);
|
|
123
|
java.sql.ResultSet rs = ps.executeQuery();
|
|
124
|
try{
|
|
125
|
java.util.List<com.ekexiu.portal.po.Operation> _result = new java.util.ArrayList<com.ekexiu.portal.po.Operation>();
|
|
126
|
while(rs.next()){
|
|
127
|
com.ekexiu.portal.po.Operation _obj = new com.ekexiu.portal.po.Operation();
|
|
128
|
_obj.setReplyNotes(rs.getString(1));
|
|
129
|
_obj.setCreateTime(rs.getString(2));
|
|
130
|
_obj.setOperationId(rs.getString(3));
|
|
131
|
_obj.setOperationStatus(rs.getInt(4));
|
|
132
|
Professor professor = new Professor();
|
|
133
|
professor.setId(rs.getString(5));
|
|
134
|
_obj.setDetailDemand(rs.getString(6));
|
|
135
|
_obj.setDeliverTime(rs.getString(7));
|
|
136
|
Resource resource = new Resource();
|
|
137
|
resource.setResourceId(rs.getString(8));
|
|
138
|
_obj.setDealPrice(rs.getBigDecimal(9));
|
|
139
|
_obj.setDealTime(rs.getString(10));
|
|
140
|
_obj.setPayMethod(rs.getString(11));
|
|
141
|
professor.setName(rs.getString(12));
|
|
142
|
_obj.setProfessor(professor);
|
|
143
|
resource.setResourceName(rs.getString(13));
|
|
144
|
_obj.setResource(resource);
|
|
145
|
_result.add(_obj);
|
|
146
|
}
|
|
147
|
return _result;
|
|
148
|
}finally{
|
|
149
|
try{rs.close();}catch(Exception _m_2){}
|
|
150
|
}
|
|
151
|
}finally{
|
|
152
|
try{ps.close();}catch(Exception _m_3){}
|
|
153
|
}
|
|
154
|
}
|
54
|
155
|
|
55
|
|
@SelectList
|
56
|
|
public abstract List<Operation> queryRes(Connection con, String resourceId) throws SQLException;
|
|
156
|
public java.util.List<com.ekexiu.portal.po.Operation> queryRes(java.sql.Connection con,java.lang.String resourceId) throws java.sql.SQLException{
|
|
157
|
int _m_1 = 1;
|
|
158
|
String sql = "SELECT REPLY_NOTES,OPERATION.CREATE_TIME,OPERATION_ID,OPERATION_STATUS,DEMAND_ID,DETAIL_DEMAND,DELIVER_TIME,OPERATION.RESOURCE_ID,DEAL_PRICE,DEAL_TIME,PAY_METHOD,PROFESSOR.NAME,RESOURCE_NAME FROM OPERATION INNER JOIN PROFESSOR ON DEMAND_ID = PROFESSOR.ID INNER JOIN RESOURCE ON OPERATION.RESOURCE_ID = RESOURCE.RESOURCE_ID WHERE RESOURCE_ID = ?";
|
|
159
|
java.sql.PreparedStatement ps = con.prepareStatement(sql);
|
|
160
|
try{
|
|
161
|
ps.setString(_m_1++,resourceId);
|
|
162
|
java.sql.ResultSet rs = ps.executeQuery();
|
|
163
|
try{
|
|
164
|
java.util.List<com.ekexiu.portal.po.Operation> _result = new java.util.ArrayList<com.ekexiu.portal.po.Operation>();
|
|
165
|
while(rs.next()){
|
|
166
|
com.ekexiu.portal.po.Operation _obj = new com.ekexiu.portal.po.Operation();
|
|
167
|
_obj.setReplyNotes(rs.getString(1));
|
|
168
|
_obj.setCreateTime(rs.getString(2));
|
|
169
|
_obj.setOperationId(rs.getString(3));
|
|
170
|
_obj.setOperationStatus(rs.getInt(4));
|
|
171
|
Professor professor = new Professor();
|
|
172
|
professor.setId(rs.getString(5));
|
|
173
|
_obj.setDetailDemand(rs.getString(6));
|
|
174
|
_obj.setDeliverTime(rs.getString(7));
|
|
175
|
Resource resource = new Resource();
|
|
176
|
resource.setResourceId(rs.getString(8));
|
|
177
|
_obj.setDealPrice(rs.getBigDecimal(9));
|
|
178
|
_obj.setDealTime(rs.getString(10));
|
|
179
|
_obj.setPayMethod(rs.getString(11));
|
|
180
|
professor.setName(rs.getString(12));
|
|
181
|
_obj.setProfessor(professor);
|
|
182
|
resource.setResourceName(rs.getString(13));
|
|
183
|
_obj.setResource(resource);
|
|
184
|
_result.add(_obj);
|
|
185
|
}
|
|
186
|
return _result;
|
|
187
|
}finally{
|
|
188
|
try{rs.close();}catch(Exception _m_2){}
|
|
189
|
}
|
|
190
|
}finally{
|
|
191
|
try{ps.close();}catch(Exception _m_3){}
|
|
192
|
}
|
|
193
|
}
|
57
|
194
|
|
58
|
195
|
@DeleteWith
|
59
|
196
|
@From(Operation.class)
|