XMTT лет назад: 8
Родитель
Сommit
b042c61af2

+ 9 - 4
src/main/java/com/ekexiu/console/system/dao/ConsultDao.java

@ -18,17 +18,22 @@ import java.util.List;
18 18
 * Created by TT on 2017/5/3.
19 19
 */
20 20
@DAO
21
public abstract class ConsultDao {
21
public interface ConsultDao {
22 22
23 23
    @QueryList
24 24
    @OrderBy("ORDER BY CREATE_TIME DESC")
25
    public abstract List<ConsultInfo> query(Connection con) throws SQLException;
25
    List<ConsultInfo> query(Connection con) throws SQLException;
26 26
27 27
    @PageQuery
28 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;
29
    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;
30 30
31 31
    @Nullable
32 32
    @QueryOne
33
    public abstract ConsultInfo query(Connection con, String consultId) throws SQLException;
33
    ConsultInfo query(Connection con, String consultId) throws SQLException;
34
35
    @Nullable
36
    @QueryList
37
    @OrderBy("ORDER BY create_time ASC")
38
    List<ConsultInfo> queryDemand(Connection con, String demandId) throws SQLException;
34 39
}

+ 33 - 0
src/main/java/com/ekexiu/console/system/dao/DemandDao.java

@ -0,0 +1,33 @@
1
package com.ekexiu.console.system.dao;
2
3
import com.ekexiu.console.system.pojo.DemandInfo;
4
import org.jfw.apt.annotation.Nullable;
5
import org.jfw.apt.orm.annotation.dao.DAO;
6
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
7
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
8
import org.jfw.apt.orm.annotation.dao.method.operator.QueryOne;
9
import org.jfw.apt.orm.annotation.dao.param.Alias;
10
import org.jfw.apt.orm.annotation.dao.param.GtEq;
11
import org.jfw.apt.orm.annotation.dao.param.Like;
12
import org.jfw.apt.orm.annotation.dao.param.LtEq;
13
import org.jfw.util.PageQueryResult;
14
15
import java.sql.Connection;
16
import java.sql.SQLException;
17
18
/**
19
 * Created by TT on 2017/5/8.
20
 */
21
@DAO
22
public interface DemandDao {
23
24
    @Nullable
25
    @QueryOne
26
    DemandInfo query(Connection con, String demandId) throws SQLException;
27
28
    @PageQuery
29
    @OrderBy("ORDER BY CREATE_TIME DESC")
30
    PageQueryResult<DemandInfo> pageQuery(Connection con, @Nullable @Like String demandTitle, @Nullable @Like String professorName,
31
                                          @Nullable @Like String demandAim, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageNo, int pageSize)throws SQLException;
32
33
}

+ 126 - 0
src/main/java/com/ekexiu/console/system/po/Demand.java

@ -0,0 +1,126 @@
1
package com.ekexiu.console.system.po;
2
3
import com.ekexiu.console.basepo.CreateTimeSupported;
4
import org.jfw.apt.orm.annotation.entry.Column;
5
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
6
import org.jfw.apt.orm.annotation.entry.Table;
7
import org.jfw.apt.orm.core.defaultImpl.FixLenStringHandler;
8
import org.jfw.apt.orm.core.enums.DE;
9
10
/**
11
 * Created by TT on 2017/5/8.
12
 */
13
@Table
14
@PrimaryKey("demandId")
15
public class Demand implements CreateTimeSupported {
16
    private String demandId;
17
    private String demander;
18
    private String demandAim;
19
    private String demandType;
20
    private String demandTitle;
21
    private String demandContent;
22
    private String demandStatus;
23
    private String createTime;
24
    private String closeTime;
25
    private long orderKey;
26
    private String orgId;
27
28
    @Column(DE.id_32)
29
    public String getDemandId() {
30
        return demandId;
31
    }
32
33
    public void setDemandId(String demandId) {
34
        this.demandId = demandId;
35
    }
36
37
    @Column(DE.id_32)
38
    public String getDemander() {
39
        return demander;
40
    }
41
42
    public void setDemander(String demander) {
43
        this.demander = demander;
44
    }
45
46
    @Column(DE.singleChar)
47
    public String getDemandAim() {
48
        return demandAim;
49
    }
50
51
    public void setDemandAim(String demandAim) {
52
        this.demandAim = demandAim;
53
    }
54
55
    @Column(DE.singleChar)
56
    public String getDemandType() {
57
        return demandType;
58
    }
59
60
    public void setDemandType(String demandType) {
61
        this.demandType = demandType;
62
    }
63
64
    @Column(DE.string_de)
65
    public String getDemandTitle() {
66
        return demandTitle;
67
    }
68
69
    public void setDemandTitle(String demandTitle) {
70
        this.demandTitle = demandTitle;
71
    }
72
73
    @Column(DE.Text_de)
74
    public String getDemandContent() {
75
        return demandContent;
76
    }
77
78
    public void setDemandContent(String demandContent) {
79
        this.demandContent = demandContent;
80
    }
81
82
    @Column(DE.singleChar)
83
    public String getDemandStatus() {
84
        return demandStatus;
85
    }
86
87
    public void setDemandStatus(String demandStatus) {
88
        this.demandStatus = demandStatus;
89
    }
90
91
    public String getCreateTime() {
92
        return createTime;
93
    }
94
95
    public void setCreateTime(String createTime) {
96
        this.createTime = createTime;
97
    }
98
99
    @Column(handlerClass = FixLenStringHandler.class, dbType = "CHAR(14)", insertable = true, nullable = true, queryable = true, renewable = false)
100
    public String getCloseTime() {
101
        return closeTime;
102
    }
103
104
    public void setCloseTime(String closeTime) {
105
        this.closeTime = closeTime;
106
    }
107
108
    @Column(DE.long_de)
109
    public long getOrderKey() {
110
        return orderKey;
111
    }
112
113
    public void setOrderKey(long orderKey) {
114
        this.orderKey = orderKey;
115
    }
116
117
    @Column(value = DE.id_32, nullable = true)
118
    public String getOrgId() {
119
        return orgId;
120
    }
121
122
    public void setOrgId(String orgId) {
123
        this.orgId = orgId;
124
    }
125
126
}

+ 26 - 0
src/main/java/com/ekexiu/console/system/pojo/DemandInfo.java

@ -0,0 +1,26 @@
1
package com.ekexiu.console.system.pojo;
2
3
import com.ekexiu.console.system.po.Demand;
4
import org.jfw.apt.orm.annotation.entry.CalcColumn;
5
import org.jfw.apt.orm.annotation.entry.ExtendView;
6
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
7
8
/**
9
 * Created by TT on 2017/5/8.
10
 */
11
@ExtendView(fromSentence = "demand INNER JOIN professor ON demand.demander=professor.id", tableAlias = "demand")
12
public class DemandInfo extends Demand {
13
14
    private String professorName;
15
16
    @CalcColumn(handlerClass = StringHandler.class,column = "professor.name")
17
    public String getProfessorName() {
18
        return professorName;
19
    }
20
21
    public void setProfessorName(String professorName) {
22
        this.professorName = professorName;
23
    }
24
25
26
}

+ 84 - 0
src/main/java/com/ekexiu/console/system/service/DemandService.java

@ -0,0 +1,84 @@
1
package com.ekexiu.console.system.service;
2
3
import com.ekexiu.console.system.dao.ConsultDao;
4
import com.ekexiu.console.system.dao.DemandDao;
5
import com.ekexiu.console.system.pojo.ConsultInfo;
6
import com.ekexiu.console.system.pojo.DemandInfo;
7
import org.jfw.apt.annotation.Autowrie;
8
import org.jfw.apt.annotation.DefaultValue;
9
import org.jfw.apt.annotation.Nullable;
10
import org.jfw.apt.orm.annotation.dao.param.Alias;
11
import org.jfw.apt.orm.annotation.dao.param.GtEq;
12
import org.jfw.apt.orm.annotation.dao.param.Like;
13
import org.jfw.apt.orm.annotation.dao.param.LtEq;
14
import org.jfw.apt.web.annotation.Path;
15
import org.jfw.apt.web.annotation.operate.Get;
16
import org.jfw.apt.web.annotation.param.JdbcConn;
17
import org.jfw.apt.web.annotation.param.PathVar;
18
import org.jfw.util.PageQueryResult;
19
20
import java.sql.Connection;
21
import java.sql.SQLException;
22
import java.util.List;
23
24
/**
25
 * Created by TT on 2017/5/8.
26
 */
27
@Path("/demand")
28
public class DemandService {
29
30
    @Autowrie
31
    DemandDao demandDao;
32
    @Autowrie
33
    ConsultDao consultDao;
34
35
    public ConsultDao getConsultDao() {
36
        return consultDao;
37
    }
38
39
    public void setConsultDao(ConsultDao consultDao) {
40
        this.consultDao = consultDao;
41
    }
42
43
    public DemandDao getDemandDao() {
44
        return demandDao;
45
    }
46
47
    public void setDemandDao(DemandDao demandDao) {
48
        this.demandDao = demandDao;
49
    }
50
51
    @Get
52
    @Path("/id/{id}")
53
    public DemandInfo query(@JdbcConn Connection con, @PathVar String id)throws SQLException {
54
        return this.demandDao.query(con,id);
55
    }
56
57
    @Get
58
    @Path("/pq")
59
    public PageQueryResult<DemandInfo> pageQuery(@JdbcConn Connection con, @Nullable @Like String demandTitle, @Nullable @Like String professorName, @Nullable @Like String demandAim, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, @DefaultValue("5") int pageSize, @DefaultValue("1") int pageNo)throws SQLException {
60
        String title ="%";
61
        if(demandTitle!=null)
62
        {
63
            title="%"+demandTitle+"%";
64
        }
65
        String name ="%";
66
        if(professorName!=null)
67
        {
68
            name="%"+professorName+"%";
69
        }
70
        String aim ="%";
71
        if(demandAim!=null)
72
        {
73
            aim="%"+demandAim+"%";
74
        }
75
        return this.demandDao.pageQuery(con,title, name, aim,bt,et, pageNo, pageSize);
76
    }
77
78
    @Get
79
    @Path("/demandId/{id}")
80
    public List<ConsultInfo> queryList(@JdbcConn Connection con, @PathVar String id) throws SQLException {
81
        return this.consultDao.queryDemand(con, id);
82
    }
83
84
}