XMTT 6 年 前
コミット
4dd64018f8

+ 43 - 0
src/main/java/com/ekexiu/console/system/dao/OrgLinkManDao.java

@ -0,0 +1,43 @@
1
package com.ekexiu.console.system.dao;
2
3
import com.ekexiu.console.system.po.OrgLinkMan;
4
import org.jfw.apt.annotation.Nullable;
5
import org.jfw.apt.orm.annotation.dao.Batch;
6
import org.jfw.apt.orm.annotation.dao.DAO;
7
import org.jfw.apt.orm.annotation.dao.method.From;
8
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
9
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
10
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
11
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
12
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
13
14
import java.sql.Connection;
15
import java.sql.SQLException;
16
import java.util.List;
17
18
@DAO
19
public interface OrgLinkManDao {
20
21
	@Insert
22
	@Batch
23
	int[] insert(Connection con, OrgLinkMan[] man)throws SQLException;
24
25
26
	@DeleteWith
27
	@From(OrgLinkMan.class)
28
	int deleteByOid(Connection con, String oid)throws SQLException;
29
30
	@DeleteWith
31
	@From(OrgLinkMan.class)
32
	int deleteByPid(Connection con, String pid)throws SQLException;
33
34
35
	@SelectOne
36
	@Nullable
37
	OrgLinkMan queryByPid(Connection con, String pid)throws SQLException;
38
39
	@SelectList
40
	@OrderBy("ORDER BY SEQ ASC")
41
	List<OrgLinkMan> queryByOid(Connection con, String oid)throws SQLException;
42
	
43
}

+ 67 - 0
src/main/java/com/ekexiu/console/system/dao/ProductDao.java

@ -0,0 +1,67 @@
1
package com.ekexiu.console.system.dao;
2
3
import com.ekexiu.console.system.po.Product;
4
import com.ekexiu.console.system.po.ProductPro;
5
import com.ekexiu.console.system.pojo.ProductInfo;
6
import org.jfw.apt.annotation.Nullable;
7
import org.jfw.apt.orm.annotation.dao.DAO;
8
import org.jfw.apt.orm.annotation.dao.method.Exclude;
9
import org.jfw.apt.orm.annotation.dao.method.From;
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;
13
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
14
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
15
import org.jfw.apt.orm.annotation.dao.method.operator.SelectList;
16
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
17
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
18
import org.jfw.apt.orm.annotation.dao.param.Alias;
19
import org.jfw.apt.orm.annotation.dao.param.GtEq;
20
import org.jfw.apt.orm.annotation.dao.param.Like;
21
import org.jfw.apt.orm.annotation.dao.param.LtEq;
22
import org.jfw.apt.orm.annotation.dao.param.Set;
23
import org.jfw.apt.orm.annotation.dao.param.SqlColumn;
24
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
25
import org.jfw.util.PageQueryResult;
26
27
import java.sql.Connection;
28
import java.sql.SQLException;
29
import java.util.List;
30
31
/**
32
 * Created by TT on 2018/7/17.
33
 */
34
@DAO
35
public interface ProductDao {
36
37
    @SelectOne
38
    @Nullable
39
    Product queryById(Connection con, String id) throws SQLException;
40
41
    @PageQuery
42
    @OrderBy(" ORDER BY MODIFY_TIME DESC NULLS LAST")
43
    @Where("STATE = '1'")
44
    @Exclude("descp")
45
    PageQueryResult<ProductInfo> queryByTime(Connection con, @Nullable @Like String name, @SqlColumn(value = {"(p.name is null or p.name like ?)", "(o.name is null or o.name like ?)"}, handlerClass = StringHandler.class) String ownerName, @Nullable @GtEq @Alias("modifyTime") String bt, @Nullable @Alias("modifyTime") @LtEq String et, int pageSize, int pageNo) throws SQLException;
46
47
    @SelectList
48
    List<ProductPro> queryPro(Connection con, String id) throws SQLException;
49
50
    @UpdateWith
51
    @From(Product.class)
52
    @Where("STATE<>'0'")
53
    @SetSentence("STATE = '0'")
54
    int logicDelete(Connection con, String id) throws SQLException;
55
56
    @UpdateWith
57
    @From(Product.class)
58
    int updateKw(Connection con, String id, @Set String keywords) throws SQLException;
59
60
    @UpdateWith
61
    @From(Product.class)
62
    int updateSortFirst(Connection con, String id, @Set long sortFirst) throws SQLException;
63
64
    @DeleteWith
65
    @From(ProductPro.class)
66
    int deletePro(Connection con, String professor) throws SQLException;
67
}

+ 26 - 0
src/main/java/com/ekexiu/console/system/dao/ProductKeyWordDao.java

@ -0,0 +1,26 @@
1
package com.ekexiu.console.system.dao;
2
3
import com.ekexiu.console.system.po.ProductKeyWord;
4
import org.jfw.apt.orm.annotation.dao.Batch;
5
import org.jfw.apt.orm.annotation.dao.DAO;
6
import org.jfw.apt.orm.annotation.dao.method.From;
7
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
8
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
9
10
import java.sql.Connection;
11
import java.sql.SQLException;
12
13
/**
14
 * Created by TT on 2018/7/23.
15
 */
16
@DAO
17
public interface ProductKeyWordDao {
18
19
    @Insert
20
    @Batch
21
    int[] insert(Connection con, ProductKeyWord productKeyWord[]) throws SQLException;
22
23
    @DeleteWith
24
    @From(ProductKeyWord.class)
25
    int delete(Connection con, String id) throws SQLException;
26
}

+ 4 - 0
src/main/java/com/ekexiu/console/system/dao/WareDao.java

@ -87,4 +87,8 @@ public interface WareDao {
87 87
88 88
    @SelectList
89 89
    List<WarePro> queryPro(Connection con, String id) throws SQLException;
90
91
    @DeleteWith
92
    @From(WarePro.class)
93
    int deletePro(Connection con, String professor) throws SQLException;
90 94
}

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

@ -27,7 +27,6 @@ public class Demand implements CreateTimeSupported, ModifyTimeSupported {
27 27
28 28
    private String state;
29 29
    private String orgName;
30
    private String modifier;
31 30
    private String creator;
32 31
    private String createTime;
33 32
    private String modifyTime;
@ -178,19 +177,6 @@ public class Demand implements CreateTimeSupported, ModifyTimeSupported {
178 177
        this.source = source;
179 178
    }
180 179
181
    /**
182
     * 最后修改人
183
     * @return
184
     */
185
    @Column(handlerClass = FixLenStringHandler.class, dbType = "CHAR(32)", insertable = true, nullable = false, queryable = true, renewable = true)
186
    public String getModifier() {
187
        return modifier;
188
    }
189
190
    public void setModifier(String modifier) {
191
        this.modifier = modifier;
192
    }
193
194 180
    /**
195 181
     * 发布人ID
196 182
     * @return

+ 37 - 0
src/main/java/com/ekexiu/console/system/po/OrgLinkMan.java

@ -0,0 +1,37 @@
1
package com.ekexiu.console.system.po;
2
3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
5
import org.jfw.apt.orm.annotation.entry.Table;
6
import org.jfw.apt.orm.core.enums.DE;
7
8
@PrimaryKey({"oid","pid"})
9
@Table
10
public class OrgLinkMan {
11
	private String oid;
12
	private String pid;
13
	private int seq;
14
	@Column(DE.text_de)
15
	public String getOid() {
16
		return oid;
17
	}
18
	public void setOid(String oid) {
19
		this.oid = oid;
20
	}
21
	@Column(DE.text_de)
22
	public String getPid() {
23
		return pid;
24
	}
25
	public void setPid(String pid) {
26
		this.pid = pid;
27
	}
28
	@Column(DE.int_de)
29
	public int getSeq() {
30
		return seq;
31
	}
32
	public void setSeq(int seq) {
33
		this.seq = seq;
34
	}
35
	
36
	
37
}

+ 232 - 0
src/main/java/com/ekexiu/console/system/po/Product.java

@ -0,0 +1,232 @@
1
package com.ekexiu.console.system.po;
2
3
import com.ekexiu.console.basepo.CreateTimeSupported;
4
import com.ekexiu.console.basepo.ModifyTimeSupported;
5
import org.jfw.apt.orm.annotation.entry.Column;
6
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
7
import org.jfw.apt.orm.annotation.entry.Table;
8
import org.jfw.apt.orm.core.defaultImpl.LongHandler;
9
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
10
import org.jfw.apt.orm.core.enums.DE;
11
12
/**
13
 * Created by TT on 2018/7/17.
14
 */
15
16
@PrimaryKey("id")
17
@Table
18
public class Product implements CreateTimeSupported, ModifyTimeSupported {
19
    private String id;
20
    private String name;
21
    /**
22
     * 关键字
23
     */
24
    private String keywords;
25
26
    /**
27
     *产品简介
28
     */
29
    private String cnt;
30
31
    /**
32
     *详细描述
33
     */
34
    private String descp;
35
36
    /**
37
     * 厂商型号
38
     */
39
    private String spec;
40
41
    /**
42
     * 产地
43
     */
44
    private String  producingArea;
45
46
    /**
47
     * 官方价格
48
     */
49
    private String price;
50
51
    /**
52
     *性能参数
53
     */
54
    private String parameter;
55
56
    /**
57
     *发布者
58
     */
59
    private String owner;
60
61
    /**
62
     *图片
63
     */
64
    private String images;
65
66
    /***
67
     *状态 0:删除,1:发布的 ,2:草稿
68
     */
69
    private String state;
70
71
    /**
72
     *创建时间
73
     */
74
    private String createTime;
75
76
    /**
77
     *最后修改时间
78
     */
79
    private String modifyTime;
80
81
    private long shareId;
82
    private long pageViews;
83
    private long sortFirst;
84
85
    @Column(DE.id_32)
86
    public String getId() {
87
        return id;
88
    }
89
90
    public void setId(String id) {
91
        this.id = id;
92
    }
93
94
    @Column(DE.text_de)
95
    public String getName() {
96
        return name;
97
    }
98
99
    public void setName(String name) {
100
        this.name = name;
101
    }
102
103
    @Column(DE.Text_de)
104
    public String getKeywords() {
105
        return keywords;
106
    }
107
108
    public void setKeywords(String keywords) {
109
        this.keywords = keywords;
110
    }
111
112
    @Column(DE.Text_de)
113
    public String getCnt() {
114
        return cnt;
115
    }
116
117
    public void setCnt(String cnt) {
118
        this.cnt = cnt;
119
    }
120
121
    @Column(DE.Text_de)
122
    public String getDescp() {
123
        return descp;
124
    }
125
126
    public void setDescp(String descp) {
127
        this.descp = descp;
128
    }
129
130
    @Column(DE.Text_de)
131
    public String getParameter() {
132
        return parameter;
133
    }
134
135
    public void setParameter(String parameter) {
136
        this.parameter = parameter;
137
    }
138
139
    @Column(DE.Text_de)
140
    public String getSpec() {
141
        return spec;
142
    }
143
144
    public void setSpec(String spec) {
145
        this.spec = spec;
146
    }
147
148
    @Column(DE.Text_de)
149
    public String getProducingArea() {
150
        return producingArea;
151
    }
152
153
    public void setProducingArea(String producingArea) {
154
        this.producingArea = producingArea;
155
    }
156
157
    @Column(DE.Text_de)
158
    public String getPrice() {
159
        return price;
160
    }
161
162
    public void setPrice(String price) {
163
        this.price = price;
164
    }
165
166
    @Column(handlerClass = StringHandler.class, dbType = "TEXT", insertable = true, nullable = false, queryable = true, renewable = false)
167
    public String getOwner() {
168
        return owner;
169
    }
170
171
    public void setOwner(String owner) {
172
        this.owner = owner;
173
    }
174
175
    @Column(DE.Text_de)
176
    public String getImages() {
177
        return images;
178
    }
179
180
    public void setImages(String images) {
181
        this.images = images;
182
    }
183
184
    @Column(DE.singleChar)
185
    public String getState() {
186
        return state;
187
    }
188
189
    public void setState(String state) {
190
        this.state = state;
191
    }
192
193
    @Column(DE.bigSerial)
194
    public long getShareId() {
195
        return shareId;
196
    }
197
198
    public void setShareId(long shareId) {
199
        this.shareId = shareId;
200
    }
201
202
    @Column(handlerClass = LongHandler.class, dbType = "INT8", nullable = true, renewable = false, fixSqlValueWithInsert = "0")
203
    public long getPageViews() {
204
        return pageViews;
205
    }
206
207
    public void setPageViews(long pageViews) {
208
        this.pageViews = pageViews;
209
    }
210
211
    @Column(handlerClass = LongHandler.class, dbType = "INT8", fixSqlValueWithInsert = "0", insertable = true, renewable = false, queryable = true, nullable = false)
212
    public long getSortFirst() {
213
        return sortFirst;
214
    }
215
216
    public void setSortFirst(long sortFirst) {
217
        this.sortFirst = sortFirst;
218
    }
219
220
    public String getCreateTime() {
221
        return createTime;
222
    }
223
    public void setCreateTime(String createTime) {
224
        this.createTime = createTime;
225
    }
226
    public String getModifyTime() {
227
        return modifyTime;
228
    }
229
    public void setModifyTime(String modifyTime) {
230
        this.modifyTime = modifyTime;
231
    }
232
}

+ 33 - 0
src/main/java/com/ekexiu/console/system/po/ProductKeyWord.java

@ -0,0 +1,33 @@
1
package com.ekexiu.console.system.po;
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.enums.DE;
6
7
/**
8
 * Created by TT on 2018/7/23.
9
 */
10
@Table("product_key_word")
11
public class ProductKeyWord {
12
13
    private String id;
14
    private String kw;
15
16
    @Column(DE.id_32)
17
    public String getId() {
18
        return id;
19
    }
20
21
    public void setId(String id) {
22
        this.id = id;
23
    }
24
25
    @Column(DE.text_de)
26
    public String getKw() {
27
        return kw;
28
    }
29
30
    public void setKw(String kw) {
31
        this.kw = kw;
32
    }
33
}

+ 32 - 0
src/main/java/com/ekexiu/console/system/po/ProductPro.java

@ -0,0 +1,32 @@
1
package com.ekexiu.console.system.po;
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.enums.DE;
6
7
/**
8
 * Created by TT on 2018/7/17.
9
 */
10
@Table
11
public class ProductPro {
12
    private String id;
13
    private String professor;
14
15
    @Column(DE.text_de)
16
    public String getId() {
17
        return id;
18
    }
19
20
    public void setId(String id) {
21
        this.id = id;
22
    }
23
24
    @Column(DE.text_de)
25
    public String getProfessor() {
26
        return professor;
27
    }
28
29
    public void setProfessor(String professor) {
30
        this.professor = professor;
31
    }
32
}

+ 33 - 0
src/main/java/com/ekexiu/console/system/pojo/ProductInfo.java

@ -0,0 +1,33 @@
1
package com.ekexiu.console.system.pojo;
2
3
import com.ekexiu.console.system.po.Product;
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 2018/7/17.
10
 */
11
@ExtendView(fromSentence = "product pd LEFT JOIN professor p on p.id = pd.owner LEFT JOIN organization o on o.id = pd.owner ",tableAlias = "pd")
12
public class ProductInfo extends Product {
13
    private String professorName;
14
    private String orgName;
15
16
    @CalcColumn(handlerClass = StringHandler.class, column = "p.name")
17
    public String getProfessorName() {
18
        return professorName;
19
    }
20
21
    public void setProfessorName(String professorName) {
22
        this.professorName = professorName;
23
    }
24
25
    @CalcColumn(handlerClass = StringHandler.class, column = "o.name")
26
    public String getOrgName() {
27
        return orgName;
28
    }
29
30
    public void setOrgName(String orgName) {
31
        this.orgName = orgName;
32
    }
33
}

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

@ -32,6 +32,8 @@ public class KeyWordService {
32 32
    private ResResultKeyWordDao resResultKeyWordDao;
33 33
    @Autowrie
34 34
    private WareKeyWordDao wareKeyWordDao;
35
    @Autowrie
36
    private ProductKeyWordDao productKeyWordDao;
35 37
36 38
    public ProKeyWordDao getProKeyWordDao() {
37 39
        return proKeyWordDao;
@ -97,6 +99,14 @@ public class KeyWordService {
97 99
        this.wareKeyWordDao = wareKeyWordDao;
98 100
    }
99 101
102
    public ProductKeyWordDao getProductKeyWordDao() {
103
        return productKeyWordDao;
104
    }
105
106
    public void setProductKeyWordDao(ProductKeyWordDao productKeyWordDao) {
107
        this.productKeyWordDao = productKeyWordDao;
108
    }
109
100 110
    public void refreshProfessor(Connection con, String id, String kw) throws SQLException {
101 111
        String[] kws = splitKeyWord(kw);
102 112
        proKeyWordDao.delete(con, id);
@ -220,6 +230,21 @@ public class KeyWordService {
220 230
        wareKeyWordDao.delete(con, id);
221 231
    }
222 232
233
    public void refreshProduct(Connection con,String id,String kw)throws SQLException {
234
        String[] kws = splitKeyWord(kw);
235
        productKeyWordDao.delete(con, id);
236
        if (kw != null && kws.length > 0) {
237
            ProductKeyWord[] productKeyWords = new ProductKeyWord[kws.length];
238
            for (int i = 0;i<kws.length;++i) {
239
                ProductKeyWord productKeyWord = new ProductKeyWord();
240
                productKeyWord.setId(id);
241
                productKeyWord.setKw(kws[i]);
242
                productKeyWords[i] = productKeyWord;
243
            }
244
            productKeyWordDao.insert(con, productKeyWords);
245
        }
246
    }
247
223 248
    public static String[] splitKeyWord(String kws) {
224 249
        if (kws == null || kws.trim().length() == 0) return null;
225 250
        kws = kws.trim();

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

@ -0,0 +1,84 @@
1
package com.ekexiu.console.system.service;
2
3
import com.ekexiu.console.system.dao.ProductDao;
4
import com.ekexiu.console.system.po.Product;
5
import com.ekexiu.console.system.po.ProductPro;
6
import com.ekexiu.console.system.pojo.ProductInfo;
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.web.annotation.Path;
11
import org.jfw.apt.web.annotation.operate.Get;
12
import org.jfw.apt.web.annotation.operate.Post;
13
import org.jfw.apt.web.annotation.param.JdbcConn;
14
import org.jfw.apt.web.annotation.param.PathVar;
15
import org.jfw.util.PageQueryResult;
16
17
import java.sql.Connection;
18
import java.sql.SQLException;
19
import java.util.List;
20
21
/**
22
 * Created by TT on 2018/7/17.
23
 */
24
@Path("/product")
25
public class ProductService {
26
    @Autowrie
27
    private ProductDao productDao;
28
    @Autowrie
29
    private KeyWordService keyWordService;
30
31
    public ProductDao getProductDao() {
32
        return productDao;
33
    }
34
35
    public void setProductDao(ProductDao productDao) {
36
        this.productDao = productDao;
37
    }
38
39
    public KeyWordService getKeyWordService() {
40
        return keyWordService;
41
    }
42
43
    public void setKeyWordService(KeyWordService keyWordService) {
44
        this.keyWordService = keyWordService;
45
    }
46
47
    @Get
48
    @Path("/id/{id}")
49
    public Product query(@JdbcConn Connection con, @PathVar String id)throws SQLException {
50
        return this.productDao.queryById(con, id);
51
    }
52
53
    @Path("/pq")
54
    @Get
55
    public PageQueryResult<ProductInfo> pageQueryResult(@JdbcConn Connection con, @Nullable String name, @Nullable String ownerName, @Nullable String bt, @Nullable String et, @DefaultValue("1") int pageNo, @DefaultValue("10") int pageSize)throws SQLException {
56
            return this.productDao.queryByTime(con, name == null ? null : "%" + name + "%",  ownerName == null ? "%" : "%" + ownerName + "%", bt == null ? null : bt + "000000", et == null ? null : et + "235959", pageSize, pageNo);
57
    }
58
59
    @Path("/linkman")
60
    @Get
61
    public List<ProductPro> queryLinkman(@JdbcConn Connection con,String id)throws SQLException {
62
        return this.productDao.queryPro(con, id);
63
    }
64
65
    @Path("/delete")
66
    @Post
67
    public void delete(@JdbcConn(true) Connection con,String id) throws SQLException {
68
        this.productDao.logicDelete(con, id);
69
    }
70
71
    @Post
72
    @Path("/kw")
73
    public void updateKw(@JdbcConn(true)Connection con,String id,@Nullable String kw)throws SQLException {
74
        this.productDao.updateKw(con, id, kw);
75
        this.keyWordService.refreshProduct(con, id, kw);
76
    }
77
78
    @Post
79
    @Path("/sortFirst")
80
    public void updateSortFirst(@JdbcConn(true)Connection con,String id,long sortFirst)throws SQLException {
81
        this.productDao.updateSortFirst(con, id, sortFirst);
82
    }
83
84
}

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

@ -1,6 +1,16 @@
1 1
package com.ekexiu.console.system.service;
2 2
3
import com.ekexiu.console.system.dao.*;
3
import com.ekexiu.console.system.dao.DemandDao;
4
import com.ekexiu.console.system.dao.LuserDao;
5
import com.ekexiu.console.system.dao.OrgDao;
6
import com.ekexiu.console.system.dao.OrgLinkManDao;
7
import com.ekexiu.console.system.dao.OrgResStaffDao;
8
import com.ekexiu.console.system.dao.PaperAuthorDao;
9
import com.ekexiu.console.system.dao.PatentAuthorDao;
10
import com.ekexiu.console.system.dao.ProductDao;
11
import com.ekexiu.console.system.dao.ProfessorDao;
12
import com.ekexiu.console.system.dao.ResearchAreaDao;
13
import com.ekexiu.console.system.dao.WareDao;
4 14
import com.ekexiu.console.system.po.Luser;
5 15
import com.ekexiu.console.system.po.Professor;
6 16
import com.ekexiu.console.system.pojo.ProfessorInfo;
@ -65,6 +75,12 @@ public class ProfessorService {
65 75
    private DemandDao demandDao;
66 76
    @Autowrie
67 77
    private OrgResStaffDao orgResStaffDao;
78
    @Autowrie
79
    private WareDao wareDao;
80
    @Autowrie
81
    private ProductDao productDao;
82
    @Autowrie
83
    private OrgLinkManDao orgLinkManDao;
68 84
69 85
    public OrgService getOrgService() {
70 86
        return orgService;
@ -154,6 +170,30 @@ public class ProfessorService {
154 170
        this.orgResStaffDao = orgResStaffDao;
155 171
    }
156 172
173
    public WareDao getWareDao() {
174
        return wareDao;
175
    }
176
177
    public void setWareDao(WareDao wareDao) {
178
        this.wareDao = wareDao;
179
    }
180
181
    public ProductDao getProductDao() {
182
        return productDao;
183
    }
184
185
    public void setProductDao(ProductDao productDao) {
186
        this.productDao = productDao;
187
    }
188
189
    public OrgLinkManDao getOrgLinkManDao() {
190
        return orgLinkManDao;
191
    }
192
193
    public void setOrgLinkManDao(OrgLinkManDao orgLinkManDao) {
194
        this.orgLinkManDao = orgLinkManDao;
195
    }
196
157 197
    @Post
158 198
    @Path
159 199
    public String insert(@JdbcConn(true) Connection con, Professor professor, @Nullable String orgName)
@ -407,6 +447,11 @@ public class ProfessorService {
407 447
            updateOrgName(con, id);
408 448
        }
409 449
        this.professorDao.updateOrgId(con, id, orgId);
450
        this.professorDao.updateOrgAuth(con, id, "0");
451
        this.orgResStaffDao.deletePro(con, id);
452
        this.orgLinkManDao.deleteByPid(con, id);
453
        this.wareDao.deletePro(con, id);
454
        this.productDao.deletePro(con, id);
410 455
    }
411 456
412 457
    @Get