ソースを参照

机构管理 增加编辑 图片上传

XMTT 7 年 前
コミット
b9c6c244c2

+ 8 - 7
src/main/java/com/ekexiu/console/system/dao/OrgDao.java

@ -1,13 +1,15 @@
1 1
package com.ekexiu.console.system.dao;
2 2

3 3
import com.ekexiu.console.system.po.Organization;
4
import com.ekexiu.console.system.pojo.OrganizationInfo;
4 5
import org.jfw.apt.annotation.Nullable;
5 6
import org.jfw.apt.orm.annotation.dao.Batch;
6 7
import org.jfw.apt.orm.annotation.dao.DAO;
7 8
import org.jfw.apt.orm.annotation.dao.method.From;
8 9
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
9 10
import org.jfw.apt.orm.annotation.dao.method.operator.*;
10
import org.jfw.apt.orm.annotation.dao.param.*;
11
import org.jfw.apt.orm.annotation.dao.param.Like;
12
import org.jfw.apt.orm.annotation.dao.param.Set;
11 13
import org.jfw.util.PageQueryResult;
12 14

13 15
import java.sql.Connection;
@ -31,16 +33,15 @@ public interface OrgDao {
31 33
	int[] delete(Connection con, @Batch String[] id) throws SQLException;
32 34

33 35
	@Nullable
34
	@SelectOne
35
	Organization query(Connection con, String id) throws SQLException;
36
	@QueryOne
37
	OrganizationInfo query(Connection con, String id) throws SQLException;
36 38

37 39
	@UpdateWith
38 40
	@From(Organization.class)
39 41
	int updateAuthStatus(Connection con,String id,@Set String authStatus)throws SQLException;
40 42

41
	@PageSelect
42
	@OrderBy(" ORDER BY NAME")
43
	PageQueryResult<Organization> query(Connection con, @Nullable @Like String name, @Nullable String orgType, @GtEq @Nullable @Alias("createTime") String bt,
44
										@LtEq @Nullable @Alias("createTime") String et, int pageSize, int pageNo) throws SQLException;
43
	@PageQuery
44
	@OrderBy(" ORDER BY create_time DESC")
45
	PageQueryResult<OrganizationInfo> query(Connection con,@Nullable @Like String inviterId, @Nullable @Like String name, @Nullable @Like String industry, @Nullable @Like String subject, @Nullable @Like String city, int pageSize, int pageNo) throws SQLException;
45 46

46 47
}

+ 19 - 0
src/main/java/com/ekexiu/console/system/dao/OrgUserDao.java

@ -0,0 +1,19 @@
1
package com.ekexiu.console.system.dao;
2
3
import com.ekexiu.console.system.po.OrgUser;
4
import org.jfw.apt.orm.annotation.dao.DAO;
5
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
6
7
import java.sql.Connection;
8
import java.sql.SQLException;
9
10
/**
11
 * Created by TT on 2017/5/18.
12
 */
13
@DAO
14
public interface OrgUserDao {
15
16
    @Insert
17
    int insert(Connection con, OrgUser orgUser) throws SQLException;
18
19
}

+ 1 - 1
src/main/java/com/ekexiu/console/system/dao/ViewAllcustomerDao.java

@ -21,6 +21,6 @@ public interface ViewAllcustomerDao {
21 21
	
22 22
	@PageSelect
23 23
	@OrderBy(" ORDER BY create_time")
24
	PageQueryResult<ViewAllcustomer> query(Connection con, @Like String name, @Like String address, @Like String orgname, @Nullable Integer sendMailStatus, int pageSize, int pageNo) throws SQLException;
24
	PageQueryResult<ViewAllcustomer> query(Connection con,@Nullable @Like String name,@Nullable @Like String address,@Nullable @Like String orgname, @Nullable Integer sendMailStatus, int pageSize, int pageNo) throws SQLException;
25 25

26 26
}

+ 1 - 1
src/main/java/com/ekexiu/console/system/dao/ViewCustomerDao.java

@ -20,6 +20,6 @@ public abstract class ViewCustomerDao {
20 20
	
21 21
	@PageSelect
22 22
	@OrderBy(" ORDER BY create_time")
23
	public abstract PageQueryResult<ViewCustomer> query(Connection con, @Like String name, @Like String address, @Like String orgname, @Nullable Integer sendMailStatus, int pageSize, int pageNo) throws SQLException;
23
	public abstract PageQueryResult<ViewCustomer> query(Connection con, @Nullable @Like String name,@Nullable @Like String address,@Nullable @Like String orgname, @Nullable Integer sendMailStatus, int pageSize, int pageNo) throws SQLException;
24 24
25 25
}

+ 80 - 0
src/main/java/com/ekexiu/console/system/po/OrgUser.java

@ -0,0 +1,80 @@
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.annotation.entry.Unique;
8
import org.jfw.apt.orm.core.enums.DE;
9
10
/**
11
 * Created by TT on 2017/5/18.
12
 */
13
@Table
14
@PrimaryKey("id")
15
@Unique(name = "org_user_email_key", clolumns = "email")
16
public class OrgUser implements CreateTimeSupported {
17
18
    private String id;
19
    private String email;
20
    private String passwd;
21
    private String userType;
22
    private String inviterId;
23
    private String createTime;
24
25
    @Column(DE.id_32)
26
    public String getId() {
27
        return id;
28
    }
29
30
    public void setId(String id) {
31
        this.id = id;
32
    }
33
34
    @Column(DE.Email_de)
35
    public String getEmail() {
36
        return email;
37
    }
38
39
    public void setEmail(String email) {
40
        this.email = email;
41
    }
42
43
    @Column(DE.md5_de)
44
    public String getPasswd() {
45
        return passwd;
46
    }
47
48
    public void setPasswd(String passwd) {
49
        this.passwd = passwd;
50
    }
51
52
    @Column(DE.String_de)
53
    public String getUserType() {
54
        return userType;
55
    }
56
57
    public void setUserType(String userType) {
58
        this.userType = userType;
59
    }
60
61
    @Column(DE.id_32)
62
    public String getInviterId() {
63
        return inviterId;
64
    }
65
66
    public void setInviterId(String inviterId) {
67
        this.inviterId = inviterId;
68
    }
69
70
    @Override
71
    public String getCreateTime() {
72
        return createTime;
73
    }
74
75
    @Override
76
    public void setCreateTime(String createTime) {
77
        this.createTime = createTime;
78
    }
79
80
}

+ 185 - 61
src/main/java/com/ekexiu/console/system/po/Organization.java

@ -1,72 +1,196 @@
1 1
package com.ekexiu.console.system.po;
2 2

3
import com.ekexiu.console.basepo.CreateTimeSupported;
4
import com.ekexiu.console.basepo.DescpSupported;
5
import com.ekexiu.console.basepo.ModifyTimeSupported;
3 6
import org.jfw.apt.orm.annotation.entry.Column;
4 7
import org.jfw.apt.orm.annotation.entry.PrimaryKey;
5 8
import org.jfw.apt.orm.annotation.entry.Table;
9
import org.jfw.apt.orm.core.defaultImpl.FixLenStringHandler;
6 10
import org.jfw.apt.orm.core.enums.DE;
7 11

8
import com.ekexiu.console.basepo.CreateTimeSupported;
9
import com.ekexiu.console.basepo.DescpSupported;
10
import com.ekexiu.console.basepo.ModifyTimeSupported;
11 12
@PrimaryKey("id")
12 13
@Table
13
public class Organization implements CreateTimeSupported,ModifyTimeSupported,DescpSupported{
14

15
	private String id;
16
	private String name;
17
	private String orgType;
18
	private String createTime;
19
	private String modifyTime;
20
	private String descp;
21
	private String authStatus;
22

23
	@Column(DE.string_de)
24
	public String getAuthStatus() {
25
		return authStatus;
26
	}
27

28
	public void setAuthStatus(String authStatus) {
29
		this.authStatus = authStatus;
30
	}
31

32
	@Column(DE.id_32)
33
	public String getId() {
34
		return id;
35
	}
36
	public void setId(String id) {
37
		this.id = id;
38
	}
39
	@Column(DE.string_de)
40
	public String getName() {
41
		return name;
42
	}
43
	public void setName(String name) {
44
		this.name = name;
45
	}
46
	@Column(DE.singleChar)
47
	public String getOrgType() {
48
		return orgType;
49
	}
50
	public void setOrgType(String orgType) {
51
		this.orgType = orgType;
52
	}
53
	public String getCreateTime() {
54
		return createTime;
55
	}
56
	public void setCreateTime(String createTime) {
57
		this.createTime = createTime;
58
	}
59
	public String getModifyTime() {
60
		return modifyTime;
61
	}
62
	public void setModifyTime(String modifyTime) {
63
		this.modifyTime = modifyTime;
64
	}
65
	public String getDescp() {
66
		return descp;
67
	}
68
	public void setDescp(String descp) {
69
		this.descp = descp;
70
	}
14
public class Organization implements CreateTimeSupported, ModifyTimeSupported, DescpSupported {
15

16
    private String id;
17
    private String name;
18
    private String orgType;
19
    private String orgAttr;
20
    private String forShort;
21
    private String orgUrl;
22
    private String foundTime;
23
    private String province;
24
    private String city;
25
    private String subject;
26
    private String industry;
27
    private String orgSize;
28
    private String qualification;
29
    private String isJoin;
30
    private String createTime;
31
    private String modifyTime;
32
    private String descp;
33
    private String authStatus;
34

35
    @Column(DE.string_de)
36
    public String getAuthStatus() {
37
        return authStatus;
38
    }
39

40
    public void setAuthStatus(String authStatus) {
41
        this.authStatus = authStatus;
42
    }
43

44
    @Column(DE.id_32)
45
    public String getId() {
46
        return id;
47
    }
48

49
    public void setId(String id) {
50
        this.id = id;
51
    }
52

53
    @Column(DE.string_de)
54
    public String getName() {
55
        return name;
56
    }
57

58
    public void setName(String name) {
59
        this.name = name;
60
    }
61

62
    @Column(DE.singleChar)
63
    public String getOrgType() {
64
        return orgType;
65
    }
66

67
    public void setOrgType(String orgType) {
68
        this.orgType = orgType;
69
    }
70

71

72
    public String getCreateTime() {
73
        return createTime;
74
    }
75

76
    public void setCreateTime(String createTime) {
77
        this.createTime = createTime;
78
    }
79

80
    public String getModifyTime() {
81
        return modifyTime;
82
    }
83

84
    public void setModifyTime(String modifyTime) {
85
        this.modifyTime = modifyTime;
86
    }
87

88
    public String getDescp() {
89
        return descp;
90
    }
91

92
    public void setDescp(String descp) {
93
        this.descp = descp;
94
    }
95

96
    @Column(DE.DictCode)
97
    public String getOrgAttr() {
98
        return orgAttr;
99
    }
100

101
    public void setOrgAttr(String orgAttr) {
102
        this.orgAttr = orgAttr;
103
    }
104

105
    @Column(value = DE.String_de, dbType = "VARCHAR(20)")
106
    public String getForShort() {
107
        return forShort;
108
    }
109

110
    public void setForShort(String forShort) {
111
        this.forShort = forShort;
112
    }
113

114
    @Column(DE.String_de)
115
    public String getOrgUrl() {
116
        return orgUrl;
117
    }
118

119
    public void setOrgUrl(String orgUrl) {
120
        this.orgUrl = orgUrl;
121
    }
122

123
    @Column(handlerClass = FixLenStringHandler.class, dbType = "CHAR(8)", nullable = true, insertable = true, renewable = true, queryable = true)
124
    public String getFoundTime() {
125
        return foundTime;
126
    }
127

128
    public void setFoundTime(String foundTime) {
129
        this.foundTime = foundTime;
130
    }
131

132
    @Column(DE.String_de)
133
    public String getProvince() {
134
        return province;
135
    }
136

137
    public void setProvince(String province) {
138
        this.province = province;
139
    }
140

141
    @Column(DE.String_de)
142
    public String getCity() {
143
        return city;
144
    }
145

146
    public void setCity(String city) {
147
        this.city = city;
148
    }
149

150
    @Column(value = DE.String_de, dbType = "TEXT")
151
    public String getSubject() {
152
        return subject;
153
    }
154

155
    public void setSubject(String subject) {
156
        this.subject = subject;
157
    }
158

159
    @Column(value = DE.String_de, dbType = "TEXT")
160
    public String getIndustry() {
161
        return industry;
162
    }
163

164
    public void setIndustry(String industry) {
165
        this.industry = industry;
166
    }
167

168
    @Column(DE.SingleChar)
169
    public String getOrgSize() {
170
        return orgSize;
171
    }
172

173
    public void setOrgSize(String orgSize) {
174
        this.orgSize = orgSize;
175
    }
176

177
    @Column(value = DE.String_de, dbType = "TEXT")
178
    public String getQualification() {
179
        return qualification;
180
    }
181

182
    public void setQualification(String qualification) {
183
        this.qualification = qualification;
184
    }
185

186
    @Column(handlerClass = FixLenStringHandler.class, dbType = "CHAR(1)", renewable = false)
187
    public String getIsJoin() {
188
        return isJoin;
189
    }
190

191
    public void setIsJoin(String isJoin) {
192
        this.isJoin = isJoin;
193
    }
194

71 195

72 196
}

+ 52 - 0
src/main/java/com/ekexiu/console/system/pojo/OrganizationInfo.java

@ -0,0 +1,52 @@
1
package com.ekexiu.console.system.pojo;
2
3
import com.ekexiu.console.system.po.Organization;
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/18.
10
 */
11
@ExtendView(fromSentence = "organization o LEFT JOIN org_user ou on ou.id = o.id LEFT JOIN cuser c on ou.inviter_id = c.id", tableAlias = "o")
12
public class OrganizationInfo extends Organization {
13
    private String principal;
14
    private String inviterId;
15
    private String email;
16
    private boolean hasOrgLogo;
17
18
    public boolean isHasOrgLogo() {
19
        return hasOrgLogo;
20
    }
21
22
    public void setHasOrgLogo(boolean hasOrgLogo) {
23
        this.hasOrgLogo = hasOrgLogo;
24
    }
25
26
    @CalcColumn(handlerClass = StringHandler.class, column = "ou.email")
27
    public String getEmail() {
28
        return email;
29
    }
30
31
    public void setEmail(String email) {
32
        this.email = email;
33
    }
34
35
    @CalcColumn(handlerClass = StringHandler.class, column = "ou.inviter_id")
36
    public String getInviterId() {
37
        return inviterId;
38
    }
39
40
    public void setInviterId(String inviterId) {
41
        this.inviterId = inviterId;
42
    }
43
44
    @CalcColumn(handlerClass = StringHandler.class, column = "c.name")
45
    public String getPrincipal() {
46
        return principal;
47
    }
48
49
    public void setPrincipal(String principal) {
50
        this.principal = principal;
51
    }
52
}

+ 3 - 3
src/main/java/com/ekexiu/console/system/service/ConsultService.java

@ -34,17 +34,17 @@ public class ConsultService {
34 34
    @Get
35 35
    @Path("/qa")
36 36
    public PageQueryResult<ConsultInfo> query(@JdbcConn Connection con, @Nullable @Like String consultantName, @Nullable @Like String professorName, @Nullable @Like String consultTitle, @Nullable Integer consultStatus, @DefaultValue("1") int pageSize, @DefaultValue("10") int pageNo) throws SQLException {
37
        String cName ="%";
37
        String cName = null;
38 38
        if(consultantName!=null)
39 39
        {
40 40
            cName="%"+consultantName+"%";
41 41
        }
42
        String pName ="%";
42
        String pName = null;
43 43
        if(professorName!=null)
44 44
        {
45 45
            pName="%"+professorName+"%";
46 46
        }
47
        String cTitle ="%";
47
        String cTitle = null;
48 48
        if(consultTitle!=null)
49 49
        {
50 50
            cTitle="%"+consultTitle+"%";

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

@ -60,17 +60,17 @@ public class DemandService {
60 60
    @Get
61 61
    @Path("/pq")
62 62
    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 {
63
        String title ="%";
63
        String title =null;
64 64
        if(demandTitle!=null)
65 65
        {
66 66
            title="%"+demandTitle+"%";
67 67
        }
68
        String name ="%";
68
        String name =null;
69 69
        if(professorName!=null)
70 70
        {
71 71
            name="%"+professorName+"%";
72 72
        }
73
        String aim ="%";
73
        String aim =null;
74 74
        if(demandAim!=null)
75 75
        {
76 76
            aim="%"+demandAim+"%";

+ 3 - 3
src/main/java/com/ekexiu/console/system/service/MyCustomerService.java

@ -34,17 +34,17 @@ public class MyCustomerService {
34 34
	@Get
35 35
	@Path("/pq")
36 36
	public PageQueryResult<MyCustomer> pageQuery(@JdbcConn Connection con, @Nullable @Like String name, @Nullable @Like String address, @Nullable @Like String orgname, @Nullable String powType, @LoginUser ConsoleAuthUser user, @DefaultValue("1") int pageNo, @DefaultValue("10") int pageSize)throws SQLException{
37
		String Cname ="%";
37
		String Cname = null;
38 38
		if(name!=null)
39 39
		{
40 40
			Cname="%"+name+"%";
41 41
		}
42
		String Caddress ="%";
42
		String Caddress = null;
43 43
		if(address!=null)
44 44
		{
45 45
			Caddress="%"+address+"%";
46 46
		}
47
		String Corgname ="%";
47
		String Corgname = null;
48 48
		if(orgname!=null)
49 49
		{
50 50
			Corgname="%"+orgname+"%";

+ 183 - 63
src/main/java/com/ekexiu/console/system/service/OrgService.java

@ -1,79 +1,199 @@
1 1
package com.ekexiu.console.system.service;
2 2

3
import java.sql.Connection;
4
import java.sql.SQLException;
5

3
import com.ekexiu.console.system.dao.OrgDao;
4
import com.ekexiu.console.system.dao.OrgUserDao;
5
import com.ekexiu.console.system.po.OrgUser;
6
import com.ekexiu.console.system.po.Organization;
7
import com.ekexiu.console.system.pojo.OrganizationInfo;
8
import com.ekexiu.console.system.vo.ConsoleAuthUser;
6 9
import org.jfw.apt.annotation.Autowrie;
7 10
import org.jfw.apt.annotation.DefaultValue;
8 11
import org.jfw.apt.annotation.Nullable;
12
import org.jfw.apt.orm.annotation.dao.param.Like;
13
import org.jfw.apt.web.annotation.LoginUser;
9 14
import org.jfw.apt.web.annotation.Path;
10 15
import org.jfw.apt.web.annotation.operate.Delete;
11 16
import org.jfw.apt.web.annotation.operate.Get;
12 17
import org.jfw.apt.web.annotation.operate.Post;
13
import org.jfw.apt.web.annotation.operate.Put;
14
import org.jfw.apt.web.annotation.param.JdbcConn;
15
import org.jfw.apt.web.annotation.param.PathVar;
16
import org.jfw.apt.web.annotation.param.RequestBody;
17
import org.jfw.apt.web.annotation.param.RequestParam;
18
import org.jfw.apt.web.annotation.param.*;
18 19
import org.jfw.util.PageQueryResult;
19 20
import org.jfw.util.StringUtil;
21
import org.jfw.util.io.IoUtil;
20 22

21
import com.ekexiu.console.system.dao.OrgDao;
22
import com.ekexiu.console.system.po.Organization;
23
import java.io.*;
24
import java.sql.Connection;
25
import java.sql.SQLException;
23 26

24 27
@Path("/sys/org")
25
public class OrgService {
26

27
	@Autowrie
28
	private OrgDao orgDao;
29

30
	public OrgDao getOrgDao() {
31
		return orgDao;
32
	}
33

34
	public void setOrgDao(OrgDao orgDao) {
35
		this.orgDao = orgDao;
36
	}
37

38
	@Post
39
	@Path
40
	public String insert(@JdbcConn(true) Connection con, @RequestParam(excludeFields = { "createTime", "modifyTime", "id" }) Organization orgn)
41
			throws SQLException {
42
		String id = StringUtil.buildUUID();
43
		orgn.setId(id);
44
		this.orgDao.insert(con, orgn);
45
		return id;
46
	}
47

48
	@Put
49
	@Path
50
	public void update(@JdbcConn(true) Connection con,@RequestBody Organization orgn)throws SQLException{
51
		this.orgDao.update(con, orgn);
52
	}
53

54
	@Get
55
	@Path("/pq")
56
	public PageQueryResult<Organization> pageQuery(@JdbcConn Connection con,@Nullable String name,@Nullable String type,@Nullable String bt,@Nullable String et,@DefaultValue("1") int pageNo,@DefaultValue("10") int pageSize)throws SQLException{
57
		return this.orgDao.query(con, name, type, bt, et, pageSize, pageNo);
58
	}
59
	
60
	@Get
61
	@Path("/id/{id}")
62
	public Organization query(@JdbcConn Connection con,@PathVar String id)throws SQLException{
63
		return this.orgDao.query(con, id);
64
	}
65
	@Delete
66
	@Path("/id/{id}")
67
	public void deleteOne(@JdbcConn(true) Connection con,@PathVar String id)throws SQLException{
68
		this.orgDao.delete(con, id);
69
	}
70
	
71
	
72
	@Post
73
	@Path("/del")
74
	public void delete(@JdbcConn(true) Connection con,String[] ids)throws SQLException{
75
		this.orgDao.delete(con, ids);
76
	}
77
	
28
public class OrgService extends com.ekexiu.console.service.Upload {
29

30
    private File imagePath;
31
    private File tmpPath;
32
    private File orgPath;
33
    public static final String DEFAULT_PW_STR = StringUtil.md5("12345678");
34

35
    public File getImagePath() {
36
        return imagePath;
37
    }
38

39
    public void setImagePath(File imagePath) {
40
        this.imagePath = imagePath;
41
        this.orgPath = new File(this.imagePath, "org");
42
    }
43

44
    public File getTmpPath() {
45
        return tmpPath;
46
    }
47

48
    public void setTmpPath(File tmpPath) {
49
        this.tmpPath = tmpPath;
50
    }
51

52
    public File getOrgPath() {
53
        return orgPath;
54
    }
55

56
    public void setOrgPath(File orgPath) {
57
        this.orgPath = orgPath;
58
    }
59

60
    @Autowrie
61
    private OrgDao orgDao;
62
    @Autowrie
63
    private OrgUserDao orgUserDao;
64

65
    public OrgUserDao getOrgUserDao() {
66
        return orgUserDao;
67
    }
68

69
    public void setOrgUserDao(OrgUserDao orgUserDao) {
70
        this.orgUserDao = orgUserDao;
71
    }
72

73
    public OrgDao getOrgDao() {
74
        return orgDao;
75
    }
76

77
    public void setOrgDao(OrgDao orgDao) {
78
        this.orgDao = orgDao;
79
    }
80

81
    @Post
82
    @Path
83
    public String insert(@JdbcConn(true) Connection con, @RequestParam(excludeFields = {"createTime", "modifyTime", "id"}) Organization orgn)
84
            throws SQLException {
85
        String id = StringUtil.buildUUID();
86
        orgn.setId(id);
87
        this.orgDao.insert(con, orgn);
88
        return id;
89
    }
90

91
    public void saveOrgLogo(String id, String fn) throws IOException {
92
        InputStream in = new FileInputStream(new File(this.tmpPath, fn));
93
        try {
94
            IoUtil.copy(in, new FileOutputStream(new File(this.orgPath, id + ".jpg")), false, true);
95
        } finally {
96
            in.close();
97
        }
98
    }
99

100
    public boolean hasOrgLogo(String id) {
101
        String orgPath = this.orgPath+"/"+id+".jpg";
102
        File file = new File(orgPath);
103
        if(file.exists()){
104
            return true;
105
        }else{
106
            return false;
107
        }
108
    }
109

110
    @Post
111
    @Path("/create")
112
    public String insertOrg(@JdbcConn(true) Connection con,
113
                            @RequestParam(fields = {@FieldParam(value = "email", valueClass = String.class, required = true),
114
                                    @FieldParam(value = "inviterId", valueClass = String.class, required = true),
115
                                    @FieldParam(value = "name", valueClass = String.class, required = true),
116
                                    @FieldParam(value = "forShort", valueClass = String.class, required = true),
117
                                    @FieldParam(value = "province", valueClass = String.class, required = true),
118
                                    @FieldParam(value = "city", valueClass = String.class, required = true),
119
                                    @FieldParam(value = "foundTime", valueClass = String.class, required = false),
120
                                    @FieldParam(value = "descp", valueClass = String.class, required = false),
121
                                    @FieldParam(value = "orgType", valueClass = String.class, required = false),
122
                                    @FieldParam(value = "industry", valueClass = String.class, required = false),
123
                                    @FieldParam(value = "subject", valueClass = String.class, required = false),
124
                                    @FieldParam(value = "orgSize", valueClass = String.class, required = false),
125
                                    @FieldParam(value = "qualification", valueClass = String.class, required = false),
126
                                    @FieldParam(value = "orgUrl", valueClass = String.class, required = false)}) OrganizationInfo info,@Nullable String fn)
127
            throws SQLException,IOException {
128
        String id = StringUtil.buildUUID();
129
        OrgUser orgUser = new OrgUser();
130
        info.setId(id);
131
        orgUser.setId(id);
132
        orgUser.setEmail(info.getEmail());
133
        orgUser.setPasswd(DEFAULT_PW_STR);
134
        orgUser.setInviterId(info.getInviterId());
135
        orgUser.setUserType("1");
136
        if(fn != null){
137
            this.saveOrgLogo(orgUser.getId(), fn);
138
        }
139
        this.orgUserDao.insert(con, orgUser);
140
        this.orgDao.insert(con, info);
141
        return orgUser.getId();
142
    }
143

144
    @Post
145
    @Path("/update")
146
    public void update(@JdbcConn(true) Connection con, Organization orgn,@Nullable String fn) throws SQLException, IOException {
147
        if(fn != null){
148
            this.saveOrgLogo(orgn.getId(), fn);
149
        }
150
        this.orgDao.update(con, orgn);
151
    }
152

153
    @Get
154
    @Path("/pq")
155
    public PageQueryResult<OrganizationInfo> pageQuery(@JdbcConn Connection con, @LoginUser ConsoleAuthUser cau, @Nullable @Like String name, @Nullable @Like String industry, @Nullable @Like String subject, @Nullable @Like String city, @DefaultValue("1") int pageNo, @DefaultValue("10") int pageSize) throws SQLException {
156
        String cName = null;
157
        if (name != null) {
158
            cName = "%" + name + "%";
159
        }
160
        String cIndustry = null;
161
        if (industry != null) {
162
            cIndustry = "%" + industry + "%";
163
        }
164
        String cSubject = null;
165
        if (subject != null) {
166
            cSubject = "%" + subject + "%";
167
        }
168
        String cCity = null;
169
        if (city != null) {
170
            cCity = "%" + city + "%";
171
        }
172
        return this.orgDao.query(con,cau.getId(), cName, cIndustry, cSubject, cCity, pageSize, pageNo);
173
    }
174

175
    @Get
176
    @Path("/id/{id}")
177
    public OrganizationInfo query(@JdbcConn Connection con, @PathVar String id) throws SQLException {
178
        OrganizationInfo organizationInfo = this.orgDao.query(con, id);
179
        if (organizationInfo != null) {
180
            organizationInfo.setHasOrgLogo(this.hasOrgLogo(organizationInfo.getId()));
181
        }
182
        return organizationInfo;
183
    }
184

185
    @Delete
186
    @Path("/id/{id}")
187
    public void deleteOne(@JdbcConn(true) Connection con, @PathVar String id) throws SQLException {
188
        this.orgDao.delete(con, id);
189
    }
190

191

192
    @Post
193
    @Path("/del")
194
    public void delete(@JdbcConn(true) Connection con, String[] ids) throws SQLException {
195
        this.orgDao.delete(con, ids);
196
    }
197

78 198

79 199
}

+ 3 - 3
src/main/java/com/ekexiu/console/system/service/ViewAllcustomerService.java

@ -31,17 +31,17 @@ public class ViewAllcustomerService {
31 31
	@Get
32 32
	@Path("/pq")
33 33
	public PageQueryResult<ViewAllcustomer> pageQuery(@JdbcConn Connection con, @Nullable @Like String name, @Nullable @Like String address, @Nullable @Like String orgname, @Nullable Integer sendMailStatus, @DefaultValue("1") int pageNo, @DefaultValue("10") int pageSize)throws SQLException{
34
		String Cname ="%";
34
		String Cname = null;
35 35
		if(name!=null)
36 36
		{
37 37
			Cname="%"+name+"%";
38 38
		}
39
		String Caddress ="%";
39
		String Caddress = null;
40 40
		if(address!=null)
41 41
		{
42 42
			Caddress="%"+address+"%";
43 43
		}
44
		String Corgname ="%";
44
		String Corgname = null;
45 45
		if(orgname!=null)
46 46
		{
47 47
			Corgname="%"+orgname+"%";

+ 4 - 4
src/main/java/com/ekexiu/console/system/service/ViewCustomerService.java

@ -37,17 +37,17 @@ public class ViewCustomerService {
37 37
	@Get
38 38
	@Path("/pq")
39 39
	public PageQueryResult<ViewCustomer> pageQuery(@JdbcConn Connection con, @Nullable @Like String name, @Nullable @Like String address, @Nullable @Like String orgname, @Nullable Integer sendMailStatus, @DefaultValue("1") int pageNo, @DefaultValue("10") int pageSize)throws SQLException{
40
		String Cname ="%";
40
		String Cname = null;
41 41
		if(name!=null)
42 42
		{
43 43
			Cname="%"+name+"%";
44 44
		}
45
		String Caddress ="%";
45
		String Caddress = null;
46 46
		if(address!=null)
47 47
		{
48 48
			Caddress="%"+address+"%";
49 49
		}
50
		String Corgname ="%";
50
		String Corgname = null;
51 51
		if(orgname!=null)
52 52
		{
53 53
			Corgname="%"+orgname+"%";
@ -64,7 +64,7 @@ public class ViewCustomerService {
64 64
	@Get
65 65
	@Path("/orgName")
66 66
	public List<TestService.TypeaheadItem> get(@JdbcConn Connection con, String q, @DefaultValue("11") int s) throws SQLException{
67
		String key = "%";
67
		String key = null;
68 68
		if(q!=null)
69 69
		{
70 70
			key= "%"+q+"%";

+ 38 - 0
src/main/java/com/ekexiu/console/util/ImageValidator.java

@ -0,0 +1,38 @@
1
package com.ekexiu.console.util;
2
3
import org.jfw.util.JpgUtil;
4
import org.jfw.util.context.JfwAppContext;
5
import org.jfw.util.exception.JfwBaseException;
6
import org.jfw.util.io.IoUtil;
7
import org.jfw.web.servlet.fileupload.cached.CachedItem;
8
import org.jfw.web.servlet.fileupload.cached.CachedItemValidator;
9
import org.jfw.web.servlet.fileupload.cached.CachedUploadServletConfig;
10
11
import java.io.File;
12
import java.io.FileInputStream;
13
import java.io.IOException;
14
import java.util.List;
15
16
public class ImageValidator implements CachedItemValidator {
17
18
	private byte[] read(CachedUploadServletConfig config, CachedItem item) throws IOException {
19
		if (config.isCacheByMemory()) {
20
			return (byte[]) JfwAppContext.getCachedObject(item.getCacheKey());
21
		} else {
22
			File file = new File(config.getCachePath(), item.getCacheKey());
23
			return IoUtil.readStream(new FileInputStream(file), true);
24
		}
25
	}
26
27
	@Override
28
	public void validdate(CachedUploadServletConfig config, List<CachedItem> files) throws JfwBaseException {
29
		try {
30
			for (CachedItem item : files) {
31
				JpgUtil.read(this.read(config, item));
32
			}
33
		} catch (Exception e) {
34
			throw new JfwBaseException(302, "upload file type unsupported with setting");
35
		}
36
	}
37
38
}

+ 18 - 0
src/main/resources/project-dev.properties

@ -32,6 +32,24 @@ dataSource.maxPoolPreparedStatementPerConnectionSize::int=20
32 32
#默认的SQL语句自动提交状态(开启或关闭)设置由连接池本身设置(false由连接池定)
33 33
dataSource.defaultAutoCommit::boolean=false
34 34

35
#com_ekexiu_console_system_service_UserService.path::java.io.File=D:/tmp/data
36
#com_ekexiu_console_system_service_OrgService.tmpPath::java.io.File=D:/tmp/data/images/tmp
37
#com_ekexiu_console_system_service_OrgService.imagePath::java.io.File=D:/tmp/data/images
38

39
com_ekexiu_console_system_service_OrgService.tmpPath::java.io.File=/kexiu/www/html/images/tmp
40
com_ekexiu_console_system_service_OrgService.imagePath::java.io.File=/kexiu/www/html/images
41

42
cachedFileUploadServlet=org.jfw.web.servlet.fileupload.cached.CachedUploadServletConfig
43
cachedFileUploadServlet.cacheByMemory::boolean=false
44
#文件上传默认路径
45
#cachedFileUploadServlet.cachePath::java.io.File=D:/tmp/data/images/tmp
46
cachedFileUploadServlet.cachePath::java.io.File=/kexiu/www/html/images/tmp
47
cachedFileUploadServlet.CachedItemValidator-ref=imageValidator
48
#文件默认尺寸限制,默认不超过5M
49
cachedFileUploadServlet.defaultSizeLimit::long=5242880
50
#上传文件后缀名
51
cachedFileUploadServlet.fileSuffix=.jpg,.png
52
imageValidator=com.ekexiu.console.util.ImageValidator
35 53

36 54
com_ekexiu_console_system_service_EmailService.phoneContentTemplate=<p class\='infoBox'><span class\='importInfo'>mobileCode</span><span style\='margin-left\:20px;'> \u6216\u8005</span></p>
37 55
com_ekexiu_console_system_service_EmailService.inviteMailSubject=[ \u79D1\u8896\u7F51 ]\u7279\u9080\u79D1\u7814\u4E13\u5BB6\u9080\u8BF7\u51FD

+ 13 - 0
src/main/resources/project-test-dev.properties

@ -30,6 +30,19 @@ dataSource.maxPoolPreparedStatementPerConnectionSize::int=20
30 30
#默认的SQL语句自动提交状态(开启或关闭)设置由连接池本身设置(false由连接池定)
31 31
dataSource.defaultAutoCommit::boolean=false
32 32
33
com_ekexiu_console_system_service_OrgService.tmpPath::java.io.File=/kexiu/www/html/images/tmp
34
com_ekexiu_console_system_service_OrgService.imagePath::java.io.File=/kexiu/www/html/images
35
36
cachedFileUploadServlet=org.jfw.web.servlet.fileupload.cached.CachedUploadServletConfig
37
cachedFileUploadServlet.cacheByMemory::boolean=false
38
#文件上传默认路径
39
cachedFileUploadServlet.cachePath::java.io.File=/kexiu/www/html/images/tmp
40
cachedFileUploadServlet.CachedItemValidator-ref=imageValidator
41
#文件默认尺寸限制,默认不超过5M
42
cachedFileUploadServlet.defaultSizeLimit::long=5242880
43
#上传文件后缀名
44
cachedFileUploadServlet.fileSuffix=.jpg,.png
45
imageValidator=com.ekexiu.console.util.ImageValidator
33 46
34 47
com_ekexiu_console_system_service_EmailService.phoneContentTemplate=<p class\='infoBox'><span class\='importInfo'>mobileCode</span><span style\='margin-left\:20px;'> \u6216\u8005</span></p>
35 48
com_ekexiu_console_system_service_EmailService.inviteMailSubject=[ \u79D1\u8896\u7F51 ]\u7279\u9080\u79D1\u7814\u4E13\u5BB6\u9080\u8BF7\u51FD

+ 13 - 0
src/main/resources/project-test.properties

@ -30,6 +30,19 @@ dataSource.maxPoolPreparedStatementPerConnectionSize::int=20
30 30
#默认的SQL语句自动提交状态(开启或关闭)设置由连接池本身设置(false由连接池定)
31 31
dataSource.defaultAutoCommit::boolean=false
32 32
33
com_ekexiu_console_system_service_OrgService.tmpPath::java.io.File=/kexiu/www/html/images/tmp
34
com_ekexiu_console_system_service_OrgService.imagePath::java.io.File=/kexiu/www/html/images
35
36
cachedFileUploadServlet=org.jfw.web.servlet.fileupload.cached.CachedUploadServletConfig
37
cachedFileUploadServlet.cacheByMemory::boolean=false
38
#文件上传默认路径
39
cachedFileUploadServlet.cachePath::java.io.File=/kexiu/www/html/images/tmp
40
cachedFileUploadServlet.CachedItemValidator-ref=imageValidator
41
#文件默认尺寸限制,默认不超过5M
42
cachedFileUploadServlet.defaultSizeLimit::long=5242880
43
#上传文件后缀名
44
cachedFileUploadServlet.fileSuffix=.jpg,.png
45
imageValidator=com.ekexiu.console.util.ImageValidator
33 46
34 47
com_ekexiu_console_system_service_EmailService.phoneContentTemplate=<p class\='infoBox'><span class\='importInfo'>mobileCode</span><span style\='margin-left\:20px;'> \u6216\u8005</span></p>
35 48
com_ekexiu_console_system_service_EmailService.inviteMailSubject=[ \u79D1\u8896\u7F51 ]\u7279\u9080\u79D1\u7814\u4E13\u5BB6\u9080\u8BF7\u51FD

+ 14 - 0
src/main/resources/project.properties

@ -30,6 +30,20 @@ dataSource.maxPoolPreparedStatementPerConnectionSize::int=20
30 30
#默认的SQL语句自动提交状态(开启或关闭)设置由连接池本身设置(false由连接池定)
31 31
dataSource.defaultAutoCommit::boolean=false
32 32
33
com_ekexiu_console_system_service_OrgService.tmpPath::java.io.File=/kexiu/www/html/images/tmp
34
com_ekexiu_console_system_service_OrgService.imagePath::java.io.File=/kexiu/www/html/images
35
36
cachedFileUploadServlet=org.jfw.web.servlet.fileupload.cached.CachedUploadServletConfig
37
cachedFileUploadServlet.cacheByMemory::boolean=false
38
#文件上传默认路径
39
cachedFileUploadServlet.cachePath::java.io.File=/kexiu/www/html/images/tmp
40
cachedFileUploadServlet.CachedItemValidator-ref=imageValidator
41
#文件默认尺寸限制,默认不超过5M
42
cachedFileUploadServlet.defaultSizeLimit::long=5242880
43
#上传文件后缀名
44
cachedFileUploadServlet.fileSuffix=.jpg,.png
45
imageValidator=com.ekexiu.console.util.ImageValidator
46
33 47
34 48
com_ekexiu_console_system_service_EmailService.phoneContentTemplate=<p class\='infoBox'><span class\='importInfo'>mobileCode</span><span style\='margin-left\:20px;'> \u6216\u8005</span></p>
35 49
com_ekexiu_console_system_service_EmailService.inviteMailSubject=[ \u79D1\u8896\u7F51 ]\u7279\u9080\u79D1\u7814\u4E13\u5BB6\u9080\u8BF7\u51FD

+ 48 - 37
src/main/webapp/WEB-INF/web.xml

@ -1,39 +1,50 @@
1 1
<?xml version="1.0" encoding="UTF-8"?>
2
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5">
3
  <servlet>
4
    <servlet-name>ajax</servlet-name>
5
    <servlet-class>org.jfw.web.servlet.core.FilenameConfigServlet</servlet-class>
6
    <init-param>
7
      <param-name>prefixLen</param-name>
8
      <param-value>${ajax.prefixLen}</param-value>
9
    </init-param>
10
    <init-param>
11
      <param-name>viewType</param-name>
12
      <param-value>1</param-value>
13
    </init-param>
14
    <init-param>
15
      <param-name>configFileName</param-name>
16
      <param-value>beanConfig.properties,${main.config}</param-value>
17
    </init-param>
18
  <init-param>
19
    	<param-name>afterBeanFactory</param-name>
20
    	<param-value>com.ekexiu.console.util.GlobalInitBean</param-value>
21
    </init-param>
22
    <load-on-startup>1</load-on-startup>
23
  </servlet>
24
  <servlet>
25
  		<servlet-name>authcss</servlet-name>
26
  		<servlet-class>com.ekexiu.console.servlet.AuthCssServlet</servlet-class>
27
  		<load-on-startup>2</load-on-startup>
28
  </servlet>
29
  
30
  <servlet-mapping>
31
    <servlet-name>ajax</servlet-name>
32
    <url-pattern>/ajax/*</url-pattern>
33
  </servlet-mapping>
34
  <servlet-mapping>
35
  		<servlet-name>authcss</servlet-name>
36
  		<url-pattern>/ajax/dyn/auth.css</url-pattern>
37
  </servlet-mapping>
38
 
2
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee"
3
         xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
4
         version="2.5">
5
    <servlet>
6
        <servlet-name>ajax</servlet-name>
7
        <servlet-class>org.jfw.web.servlet.core.FilenameConfigServlet</servlet-class>
8
        <init-param>
9
            <param-name>prefixLen</param-name>
10
            <param-value>${ajax.prefixLen}</param-value>
11
        </init-param>
12
        <init-param>
13
            <param-name>viewType</param-name>
14
            <param-value>1</param-value>
15
        </init-param>
16
        <init-param>
17
            <param-name>configFileName</param-name>
18
            <param-value>beanConfig.properties,${main.config}</param-value>
19
        </init-param>
20
        <init-param>
21
            <param-name>afterBeanFactory</param-name>
22
            <param-value>com.ekexiu.console.util.GlobalInitBean</param-value>
23
        </init-param>
24
        <load-on-startup>1</load-on-startup>
25
    </servlet>
26
    <servlet>
27
        <servlet-name>cachedFileUploadServlet</servlet-name>
28
        <servlet-class>org.jfw.web.servlet.fileupload.cached.CachedUploadServlet</servlet-class>
29
        <load-on-startup>2</load-on-startup>
30
    </servlet>
31
    <servlet>
32
        <servlet-name>authcss</servlet-name>
33
        <servlet-class>com.ekexiu.console.servlet.AuthCssServlet</servlet-class>
34
        <load-on-startup>2</load-on-startup>
35
    </servlet>
36

37
    <servlet-mapping>
38
        <servlet-name>cachedFileUploadServlet</servlet-name>
39
        <url-pattern>/ajax/cachedFileUpload</url-pattern>
40
    </servlet-mapping>
41
    <servlet-mapping>
42
        <servlet-name>ajax</servlet-name>
43
        <url-pattern>/ajax/*</url-pattern>
44
    </servlet-mapping>
45
    <servlet-mapping>
46
        <servlet-name>authcss</servlet-name>
47
        <url-pattern>/ajax/dyn/auth.css</url-pattern>
48
    </servlet-mapping>
49

39 50
</web-app>