ソースを参照

文章字段修改,新增平台

XMTT 6 年 前
コミット
a124bafcad

+ 16 - 3
src/main/java/com/ekexiu/console/system/dao/DemandDao.java

@ -4,11 +4,20 @@ import com.ekexiu.console.system.po.Demand;
4 4
import com.ekexiu.console.system.pojo.DemandInfo;
5 5
import org.jfw.apt.annotation.Nullable;
6 6
import org.jfw.apt.orm.annotation.dao.DAO;
7
import org.jfw.apt.orm.annotation.dao.method.*;
7
import org.jfw.apt.orm.annotation.dao.method.Exclude;
8
import org.jfw.apt.orm.annotation.dao.method.From;
9
import org.jfw.apt.orm.annotation.dao.method.IncludeFixSet;
10
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
11
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
12
import org.jfw.apt.orm.annotation.dao.method.Where;
8 13
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
9 14
import org.jfw.apt.orm.annotation.dao.method.operator.QueryOne;
15
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
10 16
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
11
import org.jfw.apt.orm.annotation.dao.param.*;
17
import org.jfw.apt.orm.annotation.dao.param.Alias;
18
import org.jfw.apt.orm.annotation.dao.param.GtEq;
19
import org.jfw.apt.orm.annotation.dao.param.Like;
20
import org.jfw.apt.orm.annotation.dao.param.LtEq;
12 21
import org.jfw.util.PageQueryResult;
13 22
14 23
import java.sql.Connection;
@ -27,7 +36,7 @@ public interface DemandDao {
27 36
    @PageQuery
28 37
    @Exclude("descp")
29 38
    @OrderBy("ORDER BY CREATE_TIME DESC")
30
    PageQueryResult<DemandInfo> pageQuery(Connection con, @Nullable @Like String title, @Nullable @Like String professorName,@Nullable String state, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageNo, int pageSize)throws SQLException;
39
    PageQueryResult<DemandInfo> pageQuery(Connection con, @Nullable @Like String title, @Nullable @Like String professorName,@Nullable String state,@Nullable String source, @Nullable @GtEq @Alias("createTime") String bt, @Nullable @Alias("createTime") @LtEq String et, int pageNo, int pageSize)throws SQLException;
31 40
32 41
    @UpdateWith
33 42
    @Where("STATE IN ('0','1')")
@ -42,4 +51,8 @@ public interface DemandDao {
42 51
    @IncludeFixSet
43 52
    @From(Demand.class)
44 53
    int closeByCreator(Connection con,String creator)throws SQLException;
54
55
    @Update
56
    @Where("STATE IN ('0','1')")
57
    int update(Connection con,Demand demand) throws SQLException;
45 58
}

+ 27 - 16
src/main/java/com/ekexiu/console/system/po/Article.java

@ -17,7 +17,7 @@ import org.jfw.apt.orm.core.enums.DE;
17 17
@PrimaryKey("articleId")
18 18
public class Article implements CreateTimeSupported, ModifyTimeSupported {
19 19
    private String articleId;
20
    private String professorId;
20
    //private String professorId;
21 21
    private String articleTitle;
22 22
    private String articleContent;
23 23
    private String subject;
@ -26,7 +26,7 @@ public class Article implements CreateTimeSupported, ModifyTimeSupported {
26 26
    private String modifyTime;
27 27
    private String publishTime;
28 28
    private String articleImg;
29
    private String orgId;
29
    //private String orgId;
30 30
    private String articleType;
31 31
    private int articleAgree;
32 32
    private int pageViews;
@ -35,6 +35,8 @@ public class Article implements CreateTimeSupported, ModifyTimeSupported {
35 35
    private long sortNum;
36 36
    private int colNum;
37 37
38
    private String ownerId;
39
38 40
    @Column(DE.id_32)
39 41
    public String getArticleId() {
40 42
        return articleId;
@ -42,13 +44,13 @@ public class Article implements CreateTimeSupported, ModifyTimeSupported {
42 44
    public void setArticleId(String articleId) {
43 45
        this.articleId = articleId;
44 46
    }
45
    @Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(32)",nullable=true,renewable=false)
46
    public String getProfessorId() {
47
        return professorId;
48
    }
49
    public void setProfessorId(String professorId) {
50
        this.professorId = professorId;
51
    }
47
    //@Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(32)",nullable=true,renewable=false)
48
    //public String getProfessorId() {
49
    //    return professorId;
50
    //}
51
    //public void setProfessorId(String professorId) {
52
    //    this.professorId = professorId;
53
    //}
52 54
    @Column(value= DE.string_de,dbType="TEXT")
53 55
    public String getArticleTitle() {
54 56
        return articleTitle;
@ -103,13 +105,13 @@ public class Article implements CreateTimeSupported, ModifyTimeSupported {
103 105
    public void setArticleImg(String articleImg) {
104 106
        this.articleImg = articleImg;
105 107
    }
106
    @Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(32)",nullable=true,renewable=false)
107
    public String getOrgId() {
108
        return orgId;
109
    }
110
    public void setOrgId(String orgId) {
111
        this.orgId = orgId;
112
    }
108
    //@Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(32)",nullable=true,renewable=false)
109
    //public String getOrgId() {
110
    //    return orgId;
111
    //}
112
    //public void setOrgId(String orgId) {
113
    //    this.orgId = orgId;
114
    //}
113 115
    @Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(1)",nullable=true,renewable=false)
114 116
    public String getArticleType() {
115 117
        return articleType;
@ -162,5 +164,14 @@ public class Article implements CreateTimeSupported, ModifyTimeSupported {
162 164
    public void setColNum(int colNum) {
163 165
        this.colNum = colNum;
164 166
    }
167
168
    @Column(handlerClass=FixLenStringHandler.class,dbType="CHAR(32)",nullable=true,renewable=false)
169
    public String getOwnerId() {
170
        return ownerId;
171
    }
172
173
    public void setOwnerId(String ownerId) {
174
        this.ownerId = ownerId;
175
    }
165 176
}
166 177

+ 19 - 8
src/main/java/com/ekexiu/console/system/po/Demand.java

@ -26,12 +26,13 @@ public class Demand implements CreateTimeSupported, ModifyTimeSupported {
26 26
    private String contactNum;
27 27
28 28
    private String state;
29
    private String orgId;
29
    private String orgName;
30 30
    private String modifier;
31 31
    private String creator;
32 32
    private String createTime;
33 33
    private String modifyTime;
34 34
    private String descp;
35
    private String source;
35 36
36 37
37 38
    private long pageViews;
@ -155,16 +156,26 @@ public class Demand implements CreateTimeSupported, ModifyTimeSupported {
155 156
    }
156 157
157 158
    /**
158
     * 发布人发布时所在机构ID
159
     * 发布人发布时所在机构
159 160
     * @return
160 161
     */
161
    @Column(handlerClass = FixLenStringHandler.class, dbType = "CHAR(32)", insertable = true, nullable = false, queryable = true, renewable = false)
162
    public String getOrgId() {
163
        return orgId;
162
    @Column(DE.text_de)
163
    public String getOrgName() {
164
        return orgName;
164 165
    }
165
166
    public void setOrgId(String orgId) {
167
        this.orgId = orgId;
166
    public void setOrgName(String orgName) {
167
        this.orgName = orgName;
168
    }
169
    /**
170
     * 发布来源
171
     * @return
172
     */
173
    @Column(DE.text_de)
174
    public String getSource() {
175
        return source;
176
    }
177
    public void setSource(String source) {
178
        this.source = source;
168 179
    }
169 180
170 181
    /**

+ 1 - 1
src/main/java/com/ekexiu/console/system/pojo/ArticleInfo.java

@ -8,7 +8,7 @@ import org.jfw.apt.orm.core.defaultImpl.StringHandler;
8 8
/**
9 9
 * Created by TT on 2017/7/27.
10 10
 */
11
@ExtendView(fromSentence = "article a LEFT JOIN professor p on p.id = a.professor_id LEFT JOIN organization o on o.id = a.onerg_id ", tableAlias = "a")
11
@ExtendView(fromSentence = "article a LEFT JOIN professor p on p.id = a.owner_id LEFT JOIN organization o on o.id = a.ownener_id ", tableAlias = "a")
12 12
public class ArticleInfo extends Article{
13 13
    private String professorName;
14 14
    private String organizationName;

+ 21 - 2
src/main/java/com/ekexiu/console/system/service/DemandService.java

@ -2,6 +2,7 @@ package com.ekexiu.console.system.service;
2 2
3 3
import com.ekexiu.console.system.dao.ConsultDao;
4 4
import com.ekexiu.console.system.dao.DemandDao;
5
import com.ekexiu.console.system.po.Demand;
5 6
import com.ekexiu.console.system.pojo.ConsultInfo;
6 7
import com.ekexiu.console.system.pojo.DemandInfo;
7 8
import org.jfw.apt.annotation.Autowrie;
@ -12,6 +13,7 @@ import org.jfw.apt.web.annotation.operate.Get;
12 13
import org.jfw.apt.web.annotation.operate.Post;
13 14
import org.jfw.apt.web.annotation.param.JdbcConn;
14 15
import org.jfw.apt.web.annotation.param.PathVar;
16
import org.jfw.apt.web.annotation.param.RequestParam;
15 17
import org.jfw.util.PageQueryResult;
16 18
17 19
import java.sql.Connection;
@ -53,7 +55,7 @@ public class DemandService {
53 55
54 56
    @Get
55 57
    @Path("/pq")
56
    public PageQueryResult<DemandInfo> pageQuery(@JdbcConn Connection con, @Nullable String title, @Nullable String professorName,@Nullable String state, @Nullable String bt, @Nullable String et, @DefaultValue("5") int pageSize, @DefaultValue("1") int pageNo)throws SQLException {
58
    public PageQueryResult<DemandInfo> pageQuery(@JdbcConn Connection con, @Nullable String title, @Nullable String professorName,@Nullable String state,@Nullable String source, @Nullable String bt, @Nullable String et, @DefaultValue("5") int pageSize, @DefaultValue("1") int pageNo)throws SQLException {
57 59
        String demandTitle =null;
58 60
        if(title!=null)
59 61
        {
@ -68,7 +70,7 @@ public class DemandService {
68 70
            bt = bt + "000000";
69 71
        if (et != null)
70 72
            et = et + "235959";
71
        return this.demandDao.pageQuery(con,demandTitle, name,state,bt,et, pageNo, pageSize);
73
        return this.demandDao.pageQuery(con,demandTitle, name,state,source,bt,et, pageNo, pageSize);
72 74
    }
73 75
74 76
    @Get
@ -82,4 +84,21 @@ public class DemandService {
82 84
    public void closeDemand(@JdbcConn(true) Connection con,String id)throws SQLException{
83 85
        this.demandDao.close(con, id);
84 86
    }
87
88
89
    @Post
90
    @Path("/modify")
91
    public boolean update(@JdbcConn(true) Connection con,
92
                          @RequestParam(excludeFields = { "state", "createTime", "modifyTime", "creator", "pageViews", "shareId" }) Demand demand)
93
            throws SQLException {
94
        if (demand.getCost() == null) {
95
            demand.setCost("0");
96
        }
97
        if (demand.getDuration() == null) {
98
            demand.setDuration("0");
99
        }
100
        demand.setState("1");
101
        return this.demandDao.update(con, demand) > 0;
102
    }
103
85 104
}

+ 25 - 0
src/main/java/com/ekexiu/console/system/service/OrgService.java

@ -38,6 +38,7 @@ import java.sql.ResultSet;
38 38
import java.sql.SQLException;
39 39
import java.util.ArrayList;
40 40
import java.util.List;
41
import java.util.Map;
41 42
import java.util.Objects;
42 43

43 44
@Path("/sys/org")
@ -350,6 +351,30 @@ public class OrgService {
350 351
        return ret;
351 352
    }
352 353

354
    @Get
355
    @Path("/orgId")
356
    public List<TestService.TypeaheadItem> getId(@JdbcConn Connection con, String q , @DefaultValue("10")int s)throws SQLException {
357
        if (q != null) {
358
            q = "%" + q + "%";
359
        }
360
        List<TestService.TypeaheadItem> ret = new ArrayList<>(s);
361
        final String finalKey = q;
362
        List<Map<String,Object>> typeahead = JdbcUtil.queryMaps(con, "SELECT name,id FROM organization WHERE name LIKE ?", new PreparedStatementConfig() {
363
            @Override
364
            public void config(PreparedStatement preparedStatement) throws SQLException {
365
                preparedStatement.setString(1, finalKey);
366
            }
367
        });
368

369
        for (Map<String,Object> s1 : typeahead) {
370
            TestService.TypeaheadItem thi = new TestService.TypeaheadItem();
371
            thi.setCode((String) s1.get("id"));
372
            thi.setCaption((String) s1.get("name"));
373
            ret.add(thi);
374
        }
375
        return ret;
376
    }
377

353 378
    @Get
354 379
    @Path("/querylimit")
355 380
    public List<Object> queryLimit(@JdbcConn Connection con, @Nullable String name, @DefaultValue("3") int rows) throws SQLException, JfwBaseException, IOException {

+ 34 - 0
src/main/java/com/ekexiu/console/system/service/PlatformService.java

@ -0,0 +1,34 @@
1
package com.ekexiu.console.system.service;
2
3
import org.jfw.apt.web.annotation.Path;
4
import org.jfw.apt.web.annotation.operate.Get;
5
import org.jfw.apt.web.annotation.param.JdbcConn;
6
import org.jfw.util.jdbc.JdbcUtil;
7
8
import java.sql.Connection;
9
import java.sql.SQLException;
10
import java.util.ArrayList;
11
import java.util.List;
12
import java.util.Map;
13
14
/**
15
 * Created by TT on 2018/5/25.
16
 */
17
@Path("/platform")
18
public class PlatformService {
19
20
    @Get
21
    @Path("/name")
22
    public List<TestService.TypeaheadItem>  get(@JdbcConn Connection con)throws SQLException {
23
        List<TestService.TypeaheadItem> ret = new ArrayList<>();
24
        //final String finalKey = key;
25
        List<Map<String,Object>> typeahead = JdbcUtil.queryMaps(con, "SELECT NAME,ID FROM PLATFORM_INFO");
26
        for (Map<String,Object> s1 : typeahead) {
27
            TestService.TypeaheadItem thi = new TestService.TypeaheadItem();
28
            thi.setCode((String) s1.get("id"));
29
            thi.setCaption((String) s1.get("name"));
30
            ret.add(thi);
31
        }
32
        return ret;
33
    }
34
}