XMTT 6 年之前
父節點
當前提交
b3ba5efc29

+ 73 - 0
src/main/java/com/ekexiu/project/platform/feedback/Feedback.java

@ -0,0 +1,73 @@
1
package com.ekexiu.project.platform.feedback;
2
3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.Table;
5
import org.jfw.apt.orm.core.defaultImpl.FixLenStringHandler;
6
import org.jfw.apt.orm.core.enums.DE;
7
8
/**
9
 * Created by TT on 2019/1/23.
10
 */
11
@Table(descp = "意见反馈")
12
public class Feedback{
13
    private String id;
14
    private String creator;
15
    private String createTime;
16
    private String target;
17
    private String cnt;
18
    private int type;
19
20
    @Column(descp = "意见ID", value = DE.id_32)
21
    public String getId() {
22
        return id;
23
    }
24
25
    public void setId(String id) {
26
        this.id = id;
27
    }
28
29
    @Column(descp = "用户ID",value = DE.id_32)
30
    public String getCreator() {
31
        return creator;
32
    }
33
34
    public void setCreator(String creator) {
35
        this.creator = creator;
36
    }
37
38
    @Column(descp="创建时间(YYYYMMDDHH24MISS)不可修改", handlerClass = FixLenStringHandler.class, dbType = "CHAR(14)", fixSqlValueWithInsert = "TO_CHAR(NOW(),'YYYYMMDDHH24MISS')", insertable = true, nullable = false, queryable = true, renewable = false)
39
    public String getCreateTime() {
40
        return createTime;
41
    }
42
43
    public void setCreateTime(String createTime) {
44
        this.createTime = createTime;
45
    }
46
47
    @Column(descp = "目标ID",value = DE.id_32)
48
    public String getTarget() {
49
        return target;
50
    }
51
52
    public void setTarget(String target) {
53
        this.target = target;
54
    }
55
56
    @Column(descp = "意见内容",value = DE.text_de)
57
    public String getCnt() {
58
        return cnt;
59
    }
60
61
    public void setCnt(String cnt) {
62
        this.cnt = cnt;
63
    }
64
65
    @Column(descp = "意见类型 1:需求",value = DE.int_de)
66
    public int getType() {
67
        return type;
68
    }
69
70
    public void setType(int type) {
71
        this.type = type;
72
    }
73
}

+ 23 - 0
src/main/java/com/ekexiu/project/platform/feedback/FeedbackDao.java

@ -0,0 +1,23 @@
1
package com.ekexiu.project.platform.feedback;
2
3
import org.jfw.apt.annotation.Nullable;
4
import org.jfw.apt.orm.annotation.dao.DAO;
5
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
6
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
7
8
import java.sql.Connection;
9
import java.sql.SQLException;
10
11
/**
12
 * Created by TT on 2019/1/23.
13
 */
14
@DAO
15
public interface FeedbackDao {
16
17
    @Insert
18
    int insert(Connection con, Feedback feedback) throws SQLException;
19
20
    @SelectOne
21
    @Nullable
22
    Feedback query(Connection con, int type, String target,String creator) throws SQLException;
23
}

+ 33 - 0
src/main/java/com/ekexiu/project/platform/feedback/FeedbackService.java

@ -0,0 +1,33 @@
1
package com.ekexiu.project.platform.feedback;
2
3
import org.jfw.apt.annotation.Autowrie;
4
import org.jfw.apt.web.annotation.Path;
5
import org.jfw.apt.web.annotation.operate.Get;
6
import org.jfw.apt.web.annotation.param.JdbcConn;
7
8
import java.sql.Connection;
9
import java.sql.SQLException;
10
11
/**
12
 * Created by TT on 2019/1/23.
13
 */
14
@Path("/feedback")
15
public class FeedbackService {
16
    @Autowrie
17
    private FeedbackDao feedbackDao;
18
19
    public FeedbackDao getFeedbackDao() {
20
        return feedbackDao;
21
    }
22
23
    public void setFeedbackDao(FeedbackDao feedbackDao) {
24
        this.feedbackDao = feedbackDao;
25
    }
26
27
    @Path("/query")
28
    @Get
29
    public Feedback query(@JdbcConn(true) Connection con, int type, String target,String creator)throws SQLException {
30
        return feedbackDao.query(con, type, target,creator);
31
    }
32
33
}