XMTT 6 years ago
parent
commit
a7535d0d8f
27 changed files with 2812 additions and 269 deletions
  1. 281 0
      src/main/java/com/ekexiu/project/editor/Controller.java
  2. 657 0
      src/main/java/com/ekexiu/project/editor/EditorConfig.java
  3. 128 0
      src/main/java/com/ekexiu/project/editor/PathFormat.java
  4. 65 0
      src/main/java/com/ekexiu/project/editor/define/AppInfo.java
  5. 89 0
      src/main/java/com/ekexiu/project/editor/define/BaseState.java
  6. 11 0
      src/main/java/com/ekexiu/project/editor/define/State.java
  7. 1 1
      src/main/java/com/ekexiu/project/platform/article/Article.java
  8. 2 0
      src/main/java/com/ekexiu/project/platform/base/po/ManagedBaseTable.java
  9. 72 0
      src/main/java/com/ekexiu/project/platform/company/CompInvite.java
  10. 52 0
      src/main/java/com/ekexiu/project/platform/company/CompKeyWord.java
  11. 274 0
      src/main/java/com/ekexiu/project/platform/company/Company.java
  12. 68 0
      src/main/java/com/ekexiu/project/platform/company/CompanyDao.java
  13. 55 0
      src/main/java/com/ekexiu/project/platform/company/CompanyInfo.java
  14. 10 0
      src/main/java/com/ekexiu/project/platform/company/CompanyService.java
  15. 5 0
      src/main/java/com/ekexiu/project/platform/info/PlatformDao.java
  16. 9 0
      src/main/java/com/ekexiu/project/platform/info/PlatformService.java
  17. 1 1
      src/main/java/com/ekexiu/project/platform/organization/Organization.java
  18. 176 0
      src/main/java/com/ekexiu/project/platform/product/Product.java
  19. 12 0
      src/main/java/com/ekexiu/project/platform/product/ProductDao.java
  20. 42 0
      src/main/java/com/ekexiu/project/platform/product/ProductKeyWord.java
  21. 10 0
      src/main/java/com/ekexiu/project/platform/product/ProductService.java
  22. 1 1
      src/main/java/com/ekexiu/project/platform/professor/Professor.java
  23. 31 11
      src/main/java/com/ekexiu/project/platform/system/dao/UserDao.java
  24. 298 234
      src/main/java/com/ekexiu/project/platform/system/service/CommonUtilService.java
  25. 108 20
      src/main/java/com/ekexiu/project/platform/system/service/SysService.java
  26. 1 1
      src/main/resources/.gitignore
  27. 353 0
      src/main/resources/database.sql

+ 281 - 0
src/main/java/com/ekexiu/project/editor/Controller.java

@ -0,0 +1,281 @@
1
package com.ekexiu.project.editor;
2
3
import com.ekexiu.project.editor.define.BaseState;
4
import com.ekexiu.project.editor.define.State;
5
import org.jfw.apt.annotation.Autowrie;
6
import org.jfw.apt.annotation.Bean;
7
import org.jfw.util.ConstData;
8
import org.jfw.util.json.JsonService;
9
import org.jfw.util.web.fileupload.Item;
10
import org.jfw.util.web.fileupload.UploadItemIterator;
11
import org.jfw.util.web.fileupload.impl.UploadItemIteratorImpl;
12
13
import javax.servlet.http.HttpServletRequest;
14
import javax.servlet.http.HttpServletResponse;
15
import java.io.BufferedInputStream;
16
import java.io.BufferedOutputStream;
17
import java.io.File;
18
import java.io.FileOutputStream;
19
import java.io.IOException;
20
import java.io.InputStream;
21
import java.io.Writer;
22
import java.util.HashMap;
23
import java.util.List;
24
import java.util.Map;
25
26
@Bean
27
public class Controller {
28
29
    private String rootPath;
30
31
    @Autowrie
32
    private EditorConfig config;
33
34
    public String getRootPath() {
35
        return rootPath;
36
    }
37
38
    public void setRootPath(String rootPath) {
39
        this.rootPath = rootPath;
40
    }
41
42
    public EditorConfig getConfig() {
43
        return config;
44
    }
45
46
    public void setConfig(EditorConfig config) {
47
        this.config = config;
48
    }
49
50
    public void service(HttpServletRequest req, HttpServletResponse res, int _viewType) throws javax.servlet.ServletException, IOException {
51
        req.setCharacterEncoding("utf-8");
52
        res.setHeader("Content-Type", "text/html");
53
        String callbackName = req.getParameter("callback");
54
        String ret = null;
55
        if (callbackName != null) {
56
            if (!validCallbackName(callbackName)) {
57
                ret = new BaseState(false, 401).toJSONString();
58
            } else {
59
                ret = callbackName + "(" + invoke(req) + ");";
60
            }
61
        } else {
62
            ret = invoke(req);
63
        }
64
        Writer out = res.getWriter();
65
        try {
66
            out.write(ret);
67
        } finally {
68
            out.close();
69
        }
70
    }
71
72
    public String invoke(HttpServletRequest req) {
73
        String actionType = req.getParameter("action");
74
        if ((actionType == null) || (!mapping.containsKey(actionType))) {
75
            return new BaseState(false, 101).toJSONString();
76
        }
77
78
        State state = new BaseState(false, 101);
79
80
        int actionCode = getType(actionType);
81
82
        switch (actionCode) {
83
        case 0:
84
85
            return JsonService.toJson(this.config.getAllConfig());
86
        case 1:
87
        case 2:
88
        case 3:
89
        case 4:
90
            state = this.upload(req, actionCode);
91
            break;
92
93
        }
94
        return state.toJSONString();
95
    }
96
97
    public boolean validCallbackName(String name) {
98
        if (name.matches("^[a-zA-Z_]+[\\w0-9_]*$")) {
99
            return true;
100
        }
101
        return false;
102
    }
103
104
    private State upload(HttpServletRequest req, int actionCode) {
105
        if (2 == actionCode) {
106
            return this.uploadBase64(req);
107
        }
108
        boolean isAjaxUpload = req.getHeader("X_Requested_With") != null;
109
        if (!UploadItemIteratorImpl.isMultipartContent(req)) {
110
            return new BaseState(false, 5);
111
        }
112
        try {
113
            if (isAjaxUpload) {
114
                req.setCharacterEncoding("UTF-8");
115
            }
116
            String savePath = this.config.getImagePathFormat();
117
            long maxSize = this.config.getImageMaxSize();
118
            String afs = this.config.getImageAllowFiles();
119
            if (actionCode == 3) {
120
                savePath = this.config.getVideoPathFormat();
121
                maxSize = this.config.getVideoMaxSize();
122
                afs = this.config.getVideoAllowFiles();
123
            }
124
            if (actionCode == 4) {
125
                savePath = this.config.getFilePathFormat();
126
                maxSize = this.config.getFileMaxSize();
127
                afs = this.config.getFileAllowFiles();
128
            }
129
            List<String> afList = this.config.addDot(this.config.from(afs));
130
131
            UploadItemIterator it = UploadItemIteratorImpl.build(req);
132
            try {
133
                while (it.hasNext()) {
134
                    Item item = it.next();
135
                    if (!item.isFormField()) {
136
                        String filename = item.getName();
137
                        String suffix = filename.substring(filename.lastIndexOf(".")).toLowerCase();
138
                        if (!afList.contains(suffix)) {
139
                            return new BaseState(false, 8);
140
                        }
141
                        filename = filename.substring(0, filename.length() - suffix.length());
142
                        savePath = savePath + suffix;
143
                        savePath = PathFormat.parse(savePath, filename);
144
                        State storageState = this.saveFileByInputStream(item.getInputStream(), savePath, maxSize);
145
                        if (storageState.isSuccess()) {
146
                            storageState.putInfo("url", rootPath+PathFormat.format(savePath));
147
                            storageState.putInfo("type", suffix);
148
                            storageState.putInfo("original", filename + suffix);
149
                        }
150
                        return storageState;
151
                    }
152
                }
153
                return new BaseState(false, 7);
154
            } finally {
155
                it.clean();
156
            }
157
        } catch (IOException e) {
158
        }
159
160
        return new BaseState(false, 4);
161
    }
162
163
    private static boolean validSize(byte[] data, long length) {
164
        return data.length <= length;
165
    }
166
167
    private State uploadBase64(HttpServletRequest req) {
168
        String fn = this.config.getScrawlFieldName();
169
        String content = req.getParameter(fn);
170
        byte[] data = org.jfw.apt.util.Base64.decodeBase64(content.getBytes(ConstData.UTF8));
171
172
        long maxSize = this.config.getScrawlMaxSize();
173
        if (!validSize(data, maxSize)) {
174
            return new BaseState(false, 1);
175
        }
176
        String suffix = ".jpg";
177
178
        String savePath = PathFormat.parse(this.config.getScrawlPathFormat(), "scrawl");
179
180
        savePath = savePath + suffix;
181
        State storageState = saveBinaryFile(data, savePath);
182
        if (storageState.isSuccess()) {
183
            storageState.putInfo("url", PathFormat.format(savePath));
184
            storageState.putInfo("type", suffix);
185
            storageState.putInfo("original", "");
186
        }
187
        return storageState;
188
189
    }
190
191
    public static int getType(String key) {
192
        return ((Integer) mapping.get(key)).intValue();
193
    }
194
195
    public static final int BUFFER_SIZE = 8192;
196
197
    public State saveBinaryFile(byte[] data, String path) {
198
        File file = new File(this.config.getRootPath(), path);
199
200
        State state = valid(file);
201
        if (!state.isSuccess()) {
202
            return state;
203
        }
204
        try {
205
            BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(file));
206
            bos.write(data);
207
            bos.flush();
208
            bos.close();
209
        } catch (IOException ioe) {
210
            return new BaseState(false, 4);
211
        }
212
        state = new BaseState(true, file.getAbsolutePath());
213
        state.putInfo("size", data.length);
214
        state.putInfo("title", file.getName());
215
        return state;
216
    }
217
218
    public State saveFileByInputStream(InputStream is, String path, long maxSize) {
219
        State state = null;
220
        File file = new File(this.config.getRootPath(), path);
221
        if (file.exists()) {
222
            return new BaseState(false, 2);
223
        }
224
        File parent = file.getParentFile();
225
        if(!parent.exists()){
226
            if(!parent.mkdirs())return new BaseState(false, 3);
227
        }
228
229
        byte[] dataBuf = new byte[4096];
230
        BufferedInputStream bis = new BufferedInputStream(is, 8192);
231
        try {
232
            try {
233
                BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(file), 8192);
234
235
                int count = 0;
236
                while ((count = bis.read(dataBuf)) != -1) {
237
                    bos.write(dataBuf, 0, count);
238
                }
239
                bos.flush();
240
                bos.close();
241
                if (file.length() > maxSize) {
242
                    file.delete();
243
                    return new BaseState(false, 1);
244
                }
245
                state = new BaseState(true);
246
                state.putInfo("size", file.length());
247
                state.putInfo("title", file.getName());
248
                return state;
249
            } finally {
250
                is.close();
251
            }
252
        } catch (IOException localIOException) {
253
        }
254
        return new BaseState(false, 4);
255
    }
256
257
    private static State valid(File file) {
258
        File parentPath = file.getParentFile();
259
        if ((!parentPath.exists()) && (!parentPath.mkdirs())) {
260
            return new BaseState(false, 3);
261
        }
262
        if (!parentPath.canWrite()) {
263
            return new BaseState(false, 2);
264
        }
265
        return new BaseState(true);
266
    }
267
268
    public static final Map<String, Integer> mapping = new HashMap<String, Integer>();
269
    public static final int CONFIG = 0;
270
    public static final int UPLOAD_IMAGE = 1;
271
    public static final int UPLOAD_SCRAWL = 2;
272
    public static final int UPLOAD_VIDEO = 3;
273
    public static final int UPLOAD_FILE = 4;
274
    static {
275
        mapping.put("config", CONFIG);
276
        mapping.put("uploadimage", UPLOAD_IMAGE);
277
        mapping.put("uploadscrawl", UPLOAD_SCRAWL);
278
        mapping.put("uploadvideo", UPLOAD_VIDEO);
279
        mapping.put("uploadfile", UPLOAD_FILE);
280
    }
281
}

+ 657 - 0
src/main/java/com/ekexiu/project/editor/EditorConfig.java

@ -0,0 +1,657 @@
1
package com.ekexiu.project.editor;
2
3
import org.jfw.apt.annotation.Bean;
4
import org.jfw.util.ListUtil;
5
6
import java.io.File;
7
import java.util.HashMap;
8
import java.util.LinkedList;
9
import java.util.List;
10
import java.util.Map;
11
12
@Bean
13
public class EditorConfig {
14
    private File rootPath;
15
    
16
    /* 执行上传图片的action名称 */
17
    private String imageActionName = "uploadimage";
18
    /* 提交的图片表单名称 */
19
    private String imageFieldName = "upfile";
20
    /* 上传大小限制,单位B */
21
    private long imageMaxSize = 2048000;
22
    /* 上传图片格式显示 */
23
    private String imageAllowFiles = "png,jpg,jpeg,gif,bmp";
24
    /* 是否压缩图片,默认是true */
25
    private boolean imageCompressEnable = true;
26
    /* 图片压缩最长边限制 */
27
    private long imageCompressBorder = 1600;
28
    /* 插入的图片浮动方式 */
29
    private String imageInsertAlign = "none";
30
    /* 图片访问路径前缀 */
31
    private String imageUrlPrefix = "";
32
    /* 上传保存路径,可以自定义保存路径和文件名格式 */
33
    /* {filename} 会替换成原文件名,配置这项需要注意中文乱码问题 */
34
    /* {rand:6} 会替换成随机数,后面的数字是随机数的位数 */
35
    /* {time} 会替换成时间戳 */
36
    /* {yyyy} 会替换成四位年份 */
37
    /* {yy} 会替换成两位年份 */
38
    /* {mm} 会替换成两位月份 */
39
    /* {dd} 会替换成两位日期 */
40
    /* {hh} 会替换成两位小时 */
41
    /* {ii} 会替换成两位分钟 */
42
    /* {ss} 会替换成两位秒 */
43
    /* 非法字符 \ : * ? " < > | */
44
    /* 具请体看线上文档: fexbaiducom/ueditor/#use-format_upload_filename */
45
46
    private String imagePathFormat = "/data/editor/image/{yyyy}{mm}{dd}/{time}{rand:6}";
47
    /* 涂鸦图片上传配置项 */
48
    /* 执行上传涂鸦的action名称 */
49
    private String scrawlActionName = "uploadscrawl";
50
    /* 提交的图片表单名称 */
51
    private String scrawlFieldName = "upfile";
52
    /* 上传保存路径,可以自定义保存路径和文件名格式 */
53
    private String scrawlPathFormat = "/data/editor/image/{yyyy}{mm}{dd}/{time}{rand:6}";
54
    /* 上传大小限制,单位B */
55
    private long scrawlMaxSize = 2048000;
56
    private String scrawlUrlPrefix = "";
57
    /* 图片访问路径前缀 */
58
    private String scrawlInsertAlign = "none";
59
60
    /* 截图工具上传 */
61
    /* 执行上传截图的action名称 */
62
    private String snapscreenActionName = "uploadimage";
63
    /* 上传保存路径,可以自定义保存路径和文件名格式 */
64
    private String snapscreenPathFormat = "/data/editor/image/{yyyy}{mm}{dd}/{time}{rand:6}";
65
    /* 图片访问路径前缀 */
66
    private String snapscreenUrlPrefix = "";
67
    /* 插入的图片浮动方式 */
68
    private String snapscreenInsertAlign = "none";
69
70
    /* 抓取远程图片配置 */
71
    private String catcherLocalDomain = "127001,localhost,imgbaiducom";
72
    /* 执行抓取远程图片的action名称 */
73
    private String catcherActionName = "catchimage";
74
    /* 提交的图片列表表单名称 */
75
    private String catcherFieldName = "source";
76
    /* 上传保存路径,可以自定义保存路径和文件名格式 */
77
    private String catcherPathFormat = "/data/editor/image/{yyyy}{mm}{dd}/{time}{rand:6}";
78
    /* 图片访问路径前缀 */
79
    private String catcherUrlPrefix = "";
80
    /* 上传大小限制,单位B */
81
    private long catcherMaxSize = 2048000;
82
    /* 抓取图片格式显示 */
83
    private String catcherAllowFiles = "png,jpg,jpeg,gif,bmp";
84
85
    /* 上传视频配置 */
86
    /* 执行上传视频的action名称 */
87
    private String videoActionName = "uploadvideo";
88
    /* 提交的视频表单名称 */
89
    private String videoFieldName = "upfile";
90
    /* 上传保存路径,可以自定义保存路径和文件名格式 */
91
    private String videoPathFormat = "/data/editor/video/{yyyy}{mm}{dd}/{time}{rand:6}";
92
    /* 视频访问路径前缀 */
93
    private String videoUrlPrefix = "";
94
    /* 上传大小限制,单位B,默认100MB */
95
    private long videoMaxSize = 102400000;
96
    /* 上传视频格式显示 */
97
    private String videoAllowFiles = "flv,swf,mkv,avi,rm,rmvb,mpeg,mpg,ogg,ogv,mov,wmv,mp4,webm,mp3,wav,mid";
98
99
    /* 上传文件配置 */
100
    /* controller里,执行上传视频的action名称 */
101
    private String fileActionName = "uploadfile";
102
    /* 提交的文件表单名称 */
103
    private String fileFieldName = "upfile";
104
    /* 上传保存路径,可以自定义保存路径和文件名格式 */
105
    private String filePathFormat = "/data/editor/file/{yyyy}{mm}{dd}/{time}{rand:6}";
106
    /* 文件访问路径前缀 */
107
    private String fileUrlPrefix = "";
108
    /* 上传大小限制,单位B,默认50MB */
109
    private long fileMaxSize = 51200000;
110
    /* 上传文件格式显示 */
111
    private String fileAllowFiles = "png,jpg,jpeg,gif,bmp,flv,swf,mkv,avi,rm,rmvb,mpeg,mpg,ogg,ogv,mov,wmv,mp4,webm,mp3,wav,mid,rar,zip,tar,gz,7z,bz2,cab,iso,doc,docx,xls,xlsx,ppt,pptx,pdf,txt,md,xml";
112
113
    /* 列出指定目录下的图片 */
114
    /* 执行图片管理的action名称 */
115
    private String imageManagerActionName = "listimage";
116
    /* 指定要列出图片的目录 */
117
    private String imageManagerListPath = "/data/editor/image/";
118
    /* 每次列出文件数量 */
119
    private long imageManagerListSize = 20;
120
    /* 图片访问路径前缀 */
121
    private String imageManagerUrlPrefix = "";
122
    /* 插入的图片浮动方式 */
123
    private String imageManagerInsertAlign = "none";
124
    /* 列出的文件类型 */
125
    private String imageManagerAllowFiles = "png,jpg,jpeg,gif,bmp";
126
127
    /* 列出指定目录下的文件 */
128
    /* 执行文件管理的action名称 */
129
    private String fileManagerActionName = "listfile";
130
    /* 指定要列出文件的目录 */
131
    private String fileManagerListPath = "/data/editor/upload/file/";
132
    /* 文件访问路径前缀 */
133
    private String fileManagerUrlPrefix = "";
134
    /* 每次列出文件数量 */
135
136
    private long fileManagerListSize = 20;
137
    /* 列出的文件类型 */
138
    private String fileManagerAllowFiles = "png,jpg,jpeg,gif,bmp,flv,swf,mkv,avi,rm,rmvb,mpeg,mpg,ogg,ogv,mov,wmv,mp4,webm,mp3,wav,mid,rar,zip,tar,gz,7z,bz2,cab,iso,doc,docx,xls,xlsx,ppt,pptx,pdf,txt,md,xml";
139
140
    public String getImageActionName() {
141
        return imageActionName;
142
    }
143
144
    public void setImageActionName(String imageActionName) {
145
        this.imageActionName = imageActionName;
146
    }
147
148
    public String getImageFieldName() {
149
        return imageFieldName;
150
    }
151
152
    public void setImageFieldName(String imageFieldName) {
153
        this.imageFieldName = imageFieldName;
154
    }
155
156
    public long getImageMaxSize() {
157
        return imageMaxSize;
158
    }
159
160
    public void setImageMaxSize(long imageMaxSize) {
161
        this.imageMaxSize = imageMaxSize;
162
    }
163
164
    public String getImageAllowFiles() {
165
        return imageAllowFiles;
166
    }
167
168
    public void setImageAllowFiles(String imageAllowFiles) {
169
        this.imageAllowFiles = imageAllowFiles;
170
    }
171
172
    public boolean isImageCompressEnable() {
173
        return imageCompressEnable;
174
    }
175
176
    public void setImageCompressEnable(boolean imageCompressEnable) {
177
        this.imageCompressEnable = imageCompressEnable;
178
    }
179
180
    public long getImageCompressBorder() {
181
        return imageCompressBorder;
182
    }
183
184
    public void setImageCompressBorder(long imageCompressBorder) {
185
        this.imageCompressBorder = imageCompressBorder;
186
    }
187
188
    public String getImageInsertAlign() {
189
        return imageInsertAlign;
190
    }
191
192
    public void setImageInsertAlign(String imageInsertAlign) {
193
        this.imageInsertAlign = imageInsertAlign;
194
    }
195
196
    public String getImageUrlPrefix() {
197
        return imageUrlPrefix;
198
    }
199
200
    public void setImageUrlPrefix(String imageUrlPrefix) {
201
        this.imageUrlPrefix = imageUrlPrefix;
202
    }
203
204
    public String getImagePathFormat() {
205
        return imagePathFormat;
206
    }
207
208
    public void setImagePathFormat(String imagePathFormat) {
209
        this.imagePathFormat = imagePathFormat;
210
    }
211
212
    public String getScrawlActionName() {
213
        return scrawlActionName;
214
    }
215
216
    public void setScrawlActionName(String scrawlActionName) {
217
        this.scrawlActionName = scrawlActionName;
218
    }
219
220
    public String getScrawlFieldName() {
221
        return scrawlFieldName;
222
    }
223
224
    public void setScrawlFieldName(String scrawlFieldName) {
225
        this.scrawlFieldName = scrawlFieldName;
226
    }
227
228
    public String getScrawlPathFormat() {
229
        return scrawlPathFormat;
230
    }
231
232
    public void setScrawlPathFormat(String scrawlPathFormat) {
233
        this.scrawlPathFormat = scrawlPathFormat;
234
    }
235
236
    public long getScrawlMaxSize() {
237
        return scrawlMaxSize;
238
    }
239
240
    public void setScrawlMaxSize(long scrawlMaxSize) {
241
        this.scrawlMaxSize = scrawlMaxSize;
242
    }
243
244
    public String getScrawlUrlPrefix() {
245
        return scrawlUrlPrefix;
246
    }
247
248
    public void setScrawlUrlPrefix(String scrawlUrlPrefix) {
249
        this.scrawlUrlPrefix = scrawlUrlPrefix;
250
    }
251
252
    public String getScrawlInsertAlign() {
253
        return scrawlInsertAlign;
254
    }
255
256
    public void setScrawlInsertAlign(String scrawlInsertAlign) {
257
        this.scrawlInsertAlign = scrawlInsertAlign;
258
    }
259
260
    public String getSnapscreenActionName() {
261
        return snapscreenActionName;
262
    }
263
264
    public void setSnapscreenActionName(String snapscreenActionName) {
265
        this.snapscreenActionName = snapscreenActionName;
266
    }
267
268
    public String getSnapscreenPathFormat() {
269
        return snapscreenPathFormat;
270
    }
271
272
    public void setSnapscreenPathFormat(String snapscreenPathFormat) {
273
        this.snapscreenPathFormat = snapscreenPathFormat;
274
    }
275
276
    public String getSnapscreenUrlPrefix() {
277
        return snapscreenUrlPrefix;
278
    }
279
280
    public void setSnapscreenUrlPrefix(String snapscreenUrlPrefix) {
281
        this.snapscreenUrlPrefix = snapscreenUrlPrefix;
282
    }
283
284
    public String getSnapscreenInsertAlign() {
285
        return snapscreenInsertAlign;
286
    }
287
288
    public void setSnapscreenInsertAlign(String snapscreenInsertAlign) {
289
        this.snapscreenInsertAlign = snapscreenInsertAlign;
290
    }
291
292
    public String getCatcherLocalDomain() {
293
        return catcherLocalDomain;
294
    }
295
296
    public void setCatcherLocalDomain(String catcherLocalDomain) {
297
        this.catcherLocalDomain = catcherLocalDomain;
298
    }
299
300
    public String getCatcherActionName() {
301
        return catcherActionName;
302
    }
303
304
    public void setCatcherActionName(String catcherActionName) {
305
        this.catcherActionName = catcherActionName;
306
    }
307
308
    public String getCatcherFieldName() {
309
        return catcherFieldName;
310
    }
311
312
    public void setCatcherFieldName(String catcherFieldName) {
313
        this.catcherFieldName = catcherFieldName;
314
    }
315
316
    public String getCatcherPathFormat() {
317
        return catcherPathFormat;
318
    }
319
320
    public void setCatcherPathFormat(String catcherPathFormat) {
321
        this.catcherPathFormat = catcherPathFormat;
322
    }
323
324
    public String getCatcherUrlPrefix() {
325
        return catcherUrlPrefix;
326
    }
327
328
    public void setCatcherUrlPrefix(String catcherUrlPrefix) {
329
        this.catcherUrlPrefix = catcherUrlPrefix;
330
    }
331
332
    public long getCatcherMaxSize() {
333
        return catcherMaxSize;
334
    }
335
336
    public void setCatcherMaxSize(long catcherMaxSize) {
337
        this.catcherMaxSize = catcherMaxSize;
338
    }
339
340
    public String getCatcherAllowFiles() {
341
        return catcherAllowFiles;
342
    }
343
344
    public void setCatcherAllowFiles(String catcherAllowFiles) {
345
        this.catcherAllowFiles = catcherAllowFiles;
346
    }
347
348
    public String getVideoActionName() {
349
        return videoActionName;
350
    }
351
352
    public void setVideoActionName(String videoActionName) {
353
        this.videoActionName = videoActionName;
354
    }
355
356
    public String getVideoFieldName() {
357
        return videoFieldName;
358
    }
359
360
    public void setVideoFieldName(String videoFieldName) {
361
        this.videoFieldName = videoFieldName;
362
    }
363
364
    public String getVideoPathFormat() {
365
        return videoPathFormat;
366
    }
367
368
    public void setVideoPathFormat(String videoPathFormat) {
369
        this.videoPathFormat = videoPathFormat;
370
    }
371
372
    public String getVideoUrlPrefix() {
373
        return videoUrlPrefix;
374
    }
375
376
    public void setVideoUrlPrefix(String videoUrlPrefix) {
377
        this.videoUrlPrefix = videoUrlPrefix;
378
    }
379
380
    public long getVideoMaxSize() {
381
        return videoMaxSize;
382
    }
383
384
    public void setVideoMaxSize(long videoMaxSize) {
385
        this.videoMaxSize = videoMaxSize;
386
    }
387
388
    public String getVideoAllowFiles() {
389
        return videoAllowFiles;
390
    }
391
392
    public void setVideoAllowFiles(String videoAllowFiles) {
393
        this.videoAllowFiles = videoAllowFiles;
394
    }
395
396
    public String getFileActionName() {
397
        return fileActionName;
398
    }
399
400
    public void setFileActionName(String fileActionName) {
401
        this.fileActionName = fileActionName;
402
    }
403
404
    public String getFileFieldName() {
405
        return fileFieldName;
406
    }
407
408
    public void setFileFieldName(String fileFieldName) {
409
        this.fileFieldName = fileFieldName;
410
    }
411
412
    public String getFilePathFormat() {
413
        return filePathFormat;
414
    }
415
416
    public void setFilePathFormat(String filePathFormat) {
417
        this.filePathFormat = filePathFormat;
418
    }
419
420
    public String getFileUrlPrefix() {
421
        return fileUrlPrefix;
422
    }
423
424
    public void setFileUrlPrefix(String fileUrlPrefix) {
425
        this.fileUrlPrefix = fileUrlPrefix;
426
    }
427
428
    public long getFileMaxSize() {
429
        return fileMaxSize;
430
    }
431
432
    public void setFileMaxSize(long fileMaxSize) {
433
        this.fileMaxSize = fileMaxSize;
434
    }
435
436
    public String getFileAllowFiles() {
437
        return fileAllowFiles;
438
    }
439
440
    public void setFileAllowFiles(String fileAllowFiles) {
441
        this.fileAllowFiles = fileAllowFiles;
442
    }
443
444
    public String getImageManagerActionName() {
445
        return imageManagerActionName;
446
    }
447
448
    public void setImageManagerActionName(String imageManagerActionName) {
449
        this.imageManagerActionName = imageManagerActionName;
450
    }
451
452
    public String getImageManagerListPath() {
453
        return imageManagerListPath;
454
    }
455
456
    public void setImageManagerListPath(String imageManagerListPath) {
457
        this.imageManagerListPath = imageManagerListPath;
458
    }
459
460
    public long getImageManagerListSize() {
461
        return imageManagerListSize;
462
    }
463
464
    public void setImageManagerListSize(long imageManagerListSize) {
465
        this.imageManagerListSize = imageManagerListSize;
466
    }
467
468
    public String getImageManagerUrlPrefix() {
469
        return imageManagerUrlPrefix;
470
    }
471
472
    public void setImageManagerUrlPrefix(String imageManagerUrlPrefix) {
473
        this.imageManagerUrlPrefix = imageManagerUrlPrefix;
474
    }
475
476
    public String getImageManagerInsertAlign() {
477
        return imageManagerInsertAlign;
478
    }
479
480
    public void setImageManagerInsertAlign(String imageManagerInsertAlign) {
481
        this.imageManagerInsertAlign = imageManagerInsertAlign;
482
    }
483
484
    public String getImageManagerAllowFiles() {
485
        return imageManagerAllowFiles;
486
    }
487
488
    public void setImageManagerAllowFiles(String imageManagerAllowFiles) {
489
        this.imageManagerAllowFiles = imageManagerAllowFiles;
490
    }
491
492
    public String getFileManagerActionName() {
493
        return fileManagerActionName;
494
    }
495
496
    public void setFileManagerActionName(String fileManagerActionName) {
497
        this.fileManagerActionName = fileManagerActionName;
498
    }
499
500
    public String getFileManagerListPath() {
501
        return fileManagerListPath;
502
    }
503
504
    public void setFileManagerListPath(String fileManagerListPath) {
505
        this.fileManagerListPath = fileManagerListPath;
506
    }
507
508
    public String getFileManagerUrlPrefix() {
509
        return fileManagerUrlPrefix;
510
    }
511
512
    public void setFileManagerUrlPrefix(String fileManagerUrlPrefix) {
513
        this.fileManagerUrlPrefix = fileManagerUrlPrefix;
514
    }
515
516
    public long getFileManagerListSize() {
517
        return fileManagerListSize;
518
    }
519
520
    public void setFileManagerListSize(long fileManagerListSize) {
521
        this.fileManagerListSize = fileManagerListSize;
522
    }
523
524
    public String getFileManagerAllowFiles() {
525
        return fileManagerAllowFiles;
526
    }
527
528
    public void setFileManagerAllowFiles(String fileManagerAllowFiles) {
529
        this.fileManagerAllowFiles = fileManagerAllowFiles;
530
    }
531
532
    public File getRootPath() {
533
        return rootPath;
534
    }
535
536
    public void setRootPath(File rootPath) {
537
        this.rootPath = rootPath;
538
    }
539
540
    public List<String> from(String src) {
541
        if (src == null)
542
            return null;
543
        return ListUtil.splitTrimExcludeEmpty(src, ',');
544
    }
545
546
    public List<String> addDot(List<String> list) {
547
        if (null == list)
548
            return null;
549
        List<String> ret = new LinkedList<String>();
550
        for (String s : list) {
551
            if (s.length() > 0)
552
                ret.add("." + s);
553
        }
554
        return ret;
555
    }
556
557
    public Map<String, Object> getAllConfig() {
558
        Map<String, Object> ret = new HashMap<String, Object>();
559
        ret.put("imageActionName", this.imageActionName);
560
        ret.put("imageFieldName", this.imageFieldName);
561
        ret.put("imageMaxSize", this.imageMaxSize);
562
        ret.put("imageAllowFiles", this.addDot(this.from(this.imageAllowFiles)));
563
        ret.put("imageCompressEnable", this.imageCompressEnable);
564
        ret.put("imageCompressBorder", this.imageCompressBorder);
565
        ;
566
        ret.put("imageInsertAlign", this.imageInsertAlign);
567
        ret.put("imageUrlPrefix", this.imageUrlPrefix);
568
569
        ret.put("imagePathFormat", this.imagePathFormat);
570
571
        ret.put("scrawlActionName", this.scrawlActionName);
572
573
        ret.put("scrawlFieldName", this.scrawlFieldName);
574
        ret.put("scrawlPathFormat", this.scrawlPathFormat);
575
        ret.put("scrawlMaxSize", this.scrawlMaxSize);
576
        ret.put("scrawlUrlPrefix", this.scrawlUrlPrefix);
577
        ret.put("scrawlInsertAlign", this.scrawlInsertAlign);
578
579
        ret.put("snapscreenActionName", this.snapscreenActionName);
580
        /* 上传保存路径,可以自定义保存路径和文件名格式 */
581
        ret.put("snapscreenPathFormat", this.snapscreenPathFormat);
582
        /* 图片访问路径前缀 */
583
        ret.put("snapscreenUrlPrefix", this.snapscreenUrlPrefix);
584
        /* 插入的图片浮动方式 */
585
        ret.put("snapscreenInsertAlign", this.snapscreenInsertAlign);
586
587
        /* 抓取远程图片配置 */
588
        ret.put("catcherLocalDomain", this.from(this.catcherLocalDomain));
589
        /* 执行抓取远程图片的action名称 */
590
        ret.put("catcherActionName", this.catcherActionName);
591
        /* 提交的图片列表表单名称 */
592
        ret.put("catcherFieldName", this.catcherFieldName);
593
        /* 上传保存路径,可以自定义保存路径和文件名格式 */
594
        ret.put("catcherPathFormat", this.catcherPathFormat);
595
        /* 图片访问路径前缀 */
596
        ret.put("catcherUrlPrefix", this.catcherUrlPrefix);
597
        /* 上传大小限制,单位B */
598
        ret.put("catcherMaxSize", this.catcherMaxSize);
599
        ret.put("catcherAllowFiles", this.addDot(this.from(this.catcherAllowFiles)));
600
601
        /* 上传视频配置 */
602
        /* 执行上传视频的action名称 */
603
        ret.put("videoActionName", this.videoActionName);
604
        /* 提交的视频表单名称 */
605
        ret.put("videoFieldName", this.videoFieldName);
606
        /* 上传保存路径,可以自定义保存路径和文件名格式 */
607
        ret.put("videoPathFormat", this.videoPathFormat);
608
        /* 视频访问路径前缀 */
609
        ret.put("videoUrlPrefix", this.videoUrlPrefix);
610
        ret.put("videoMaxSize", this.videoMaxSize);
611
        /* 上传视频格式显示 */
612
        ret.put("videoAllowFiles", this.addDot(this.from(this.videoAllowFiles)));
613
614
        /* 上传文件配置 */
615
        /* controller里,执行上传视频的action名称 */
616
        ret.put("fileActionName", this.fileActionName);
617
        /* 提交的文件表单名称 */
618
        ret.put("fileFieldName", this.fileFieldName);
619
        /* 上传保存路径,可以自定义保存路径和文件名格式 */
620
        ret.put("filePathFormat", this.filePathFormat);
621
        /* 文件访问路径前缀 */
622
        ret.put("fileUrlPrefix", this.fileUrlPrefix);
623
        /* 上传大小限制,单位B,默认50MB */
624
        ret.put("fileMaxSize", this.fileMaxSize);
625
        /* 上传文件格式显示 */
626
        ret.put("fileAllowFiles", this.addDot(this.from(this.fileAllowFiles)));
627
628
        /* 列出指定目录下的图片 */
629
        /* 执行图片管理的action名称 */
630
        ret.put("imageManagerActionName", this.imageManagerActionName);
631
        /* 指定要列出图片的目录 */
632
        ret.put("imageManagerListPath", this.imageManagerListPath);
633
        /* 每次列出文件数量 */
634
        ret.put("imageManagerListSize", this.imageManagerListSize);
635
        /* 图片访问路径前缀 */
636
        ret.put("imageManagerUrlPrefix", this.imageManagerUrlPrefix);
637
        /* 插入的图片浮动方式 */
638
        ret.put("imageManagerInsertAlign", this.imageManagerInsertAlign);
639
        /* 列出的文件类型 */
640
        ret.put("imageManagerAllowFiles", this.addDot(this.from(this.imageManagerAllowFiles)));
641
642
        /* 列出指定目录下的文件 */
643
        /* 执行文件管理的action名称 */
644
        ret.put("fileManagerActionName", this.fileManagerActionName);
645
        /* 指定要列出文件的目录 */
646
        ret.put("fileManagerListPath", this.fileManagerListPath);
647
        /* 文件访问路径前缀 */
648
        ret.put("fileManagerUrlPrefix", this.fileManagerUrlPrefix);
649
        /* 每次列出文件数量 */
650
651
        ret.put("fileManagerListSize", this.fileManagerListSize);
652
        /* 列出的文件类型 */
653
        ret.put("fileManagerAllowFiles", this.addDot(this.from(this.fileManagerAllowFiles)));
654
        return ret;
655
656
    }
657
}

+ 128 - 0
src/main/java/com/ekexiu/project/editor/PathFormat.java

@ -0,0 +1,128 @@
1
package com.ekexiu.project.editor;
2
3
import java.text.SimpleDateFormat;
4
import java.util.Date;
5
import java.util.regex.Matcher;
6
import java.util.regex.Pattern;
7
8
public class PathFormat {
9
10
    private static Date currentDate = null;
11
12
    public static String parse(String input) {
13
        Pattern pattern = Pattern.compile("\\{([^\\}]+)\\}", 2);
14
        Matcher matcher = pattern.matcher(input);
15
16
        currentDate = new Date();
17
18
        StringBuffer sb = new StringBuffer();
19
        while (matcher.find()) {
20
            matcher.appendReplacement(sb, getString(matcher.group(1)));
21
        }
22
        matcher.appendTail(sb);
23
24
        return sb.toString();
25
    }
26
27
    public static String format(String input) {
28
        return input.replace("\\", "/");
29
    }
30
31
    public static String parse(String input, String filename) {
32
        Pattern pattern = Pattern.compile("\\{([^\\}]+)\\}", 2);
33
        Matcher matcher = pattern.matcher(input);
34
        String matchStr = null;
35
36
        currentDate = new Date();
37
38
        StringBuffer sb = new StringBuffer();
39
        while (matcher.find()) {
40
            matchStr = matcher.group(1);
41
            if (matchStr.indexOf("filename") != -1) {
42
                filename = filename.replace("$", "\\$").replaceAll("[\\/:*?\"<>|]", "");
43
                matcher.appendReplacement(sb, filename);
44
            } else {
45
                matcher.appendReplacement(sb, getString(matchStr));
46
            }
47
        }
48
        matcher.appendTail(sb);
49
50
        return sb.toString();
51
    }
52
53
    private static String getString(String pattern) {
54
        pattern = pattern.toLowerCase();
55
        if (pattern.indexOf("time") != -1) {
56
            return "" + getTimestamp();
57
        }
58
        if (pattern.indexOf("yyyy") != -1) {
59
            return getFullYear();
60
        }
61
        if (pattern.indexOf("yy") != -1) {
62
            return getYear();
63
        }
64
        if (pattern.indexOf("mm") != -1) {
65
            return getMonth();
66
        }
67
        if (pattern.indexOf("dd") != -1) {
68
            return getDay();
69
        }
70
        if (pattern.indexOf("hh") != -1) {
71
            return getHour();
72
        }
73
        if (pattern.indexOf("ii") != -1) {
74
            return getMinute();
75
        }
76
        if (pattern.indexOf("ss") != -1) {
77
            return getSecond();
78
        }
79
        if (pattern.indexOf("rand") != -1) {
80
            return getRandom(pattern);
81
        }
82
        return pattern;
83
    }
84
85
    private static long getTimestamp() {
86
        return System.currentTimeMillis();
87
    }
88
89
    private static String getFullYear() {
90
        return new SimpleDateFormat("yyyy").format(currentDate);
91
    }
92
93
    private static String getYear() {
94
        return new SimpleDateFormat("yy").format(currentDate);
95
    }
96
97
    private static String getMonth() {
98
        return new SimpleDateFormat("MM").format(currentDate);
99
    }
100
101
    private static String getDay() {
102
        return new SimpleDateFormat("dd").format(currentDate);
103
    }
104
105
    private static String getHour() {
106
        return new SimpleDateFormat("HH").format(currentDate);
107
    }
108
109
    private static String getMinute() {
110
        return new SimpleDateFormat("mm").format(currentDate);
111
    }
112
113
    private static String getSecond() {
114
        return new SimpleDateFormat("ss").format(currentDate);
115
    }
116
117
    private static String getRandom(String pattern) {
118
        int length = 0;
119
        pattern = pattern.split(":")[1].trim();
120
121
        length = Integer.parseInt(pattern);
122
123
        return ("" + Math.random()).replace(".", "").substring(0, length);
124
    }
125
126
    public static void main(String[] args) {
127
    }
128
}

+ 65 - 0
src/main/java/com/ekexiu/project/editor/define/AppInfo.java

@ -0,0 +1,65 @@
1
package com.ekexiu.project.editor.define;
2
3
import java.util.HashMap;
4
import java.util.Map;
5
6
public class AppInfo {
7
    public static final int SUCCESS = 0;
8
    public static final int MAX_SIZE = 1;
9
    public static final int PERMISSION_DENIED = 2;
10
    public static final int FAILED_CREATE_FILE = 3;
11
    public static final int IO_ERROR = 4;
12
    public static final int NOT_MULTIPART_CONTENT = 5;
13
    public static final int PARSE_REQUEST_ERROR = 6;
14
    public static final int NOTFOUND_UPLOAD_DATA = 7;
15
    public static final int NOT_ALLOW_FILE_TYPE = 8;
16
    public static final int INVALID_ACTION = 101;
17
    public static final int CONFIG_ERROR = 102;
18
    public static final int PREVENT_HOST = 201;
19
    public static final int CONNECTION_ERROR = 202;
20
    public static final int REMOTE_FAIL = 203;
21
    public static final int NOT_DIRECTORY = 301;
22
    public static final int NOT_EXIST = 302;
23
    public static final int ILLEGAL = 401;
24
    public static Map<Integer, String> info = new HashMap<Integer, String>();
25
26
    public static String getStateInfo(int key) {
27
        return info.get(Integer.valueOf(key));
28
    }
29
30
    static {
31
        info.put(SUCCESS, "SUCCESS");
32
33
        info.put(INVALID_ACTION, "无效的Action");
34
35
        info.put(CONFIG_ERROR, "配置文件初始化失败");
36
37
        info.put(REMOTE_FAIL, "抓取远程图片失败");
38
39
        info.put(PREVENT_HOST, "被阻止的远程主机");
40
41
        info.put(CONNECTION_ERROR, "远程连接出错");
42
43
        info.put(MAX_SIZE, "文件大小超出限制");
44
45
        info.put(PERMISSION_DENIED, "权限不足");
46
47
        info.put(FAILED_CREATE_FILE, "创建文件失败");
48
49
        info.put(IO_ERROR, "IO错误");
50
51
        info.put(NOT_MULTIPART_CONTENT, "上传表单不是multipart/form-data类型");
52
53
        info.put(PARSE_REQUEST_ERROR, "解析上传表单错误");
54
55
        info.put(NOTFOUND_UPLOAD_DATA, "未找到上传数据");
56
57
        info.put(NOT_ALLOW_FILE_TYPE, "不允许的文件类型");
58
59
        info.put(NOT_DIRECTORY, "指定路径不是目录");
60
61
        info.put(NOT_EXIST, "指定路径并不存在");
62
63
        info.put(ILLEGAL, "Callback参数名不合法");
64
    }
65
}

+ 89 - 0
src/main/java/com/ekexiu/project/editor/define/BaseState.java

@ -0,0 +1,89 @@
1
package com.ekexiu.project.editor.define;
2
3
import java.util.HashMap;
4
import java.util.Iterator;
5
import java.util.Map;
6
7
public class BaseState implements State {
8
    private boolean state = false;
9
    private String info = null;
10
    private Map<String, String> infoMap = new HashMap<String, String>();
11
12
    public BaseState() {
13
        this.state = true;
14
    }
15
16
    public BaseState(boolean state) {
17
        setState(state);
18
    }
19
20
    public BaseState(boolean state, String info) {
21
        setState(state);
22
        this.info = info;
23
    }
24
25
    public BaseState(boolean state, int infoCode) {
26
        setState(state);
27
        this.info = AppInfo.getStateInfo(infoCode);
28
    }
29
30
    public boolean isSuccess() {
31
        return this.state;
32
    }
33
34
    public void setState(boolean state) {
35
        this.state = state;
36
    }
37
38
    public void setInfo(String info) {
39
        this.info = info;
40
    }
41
42
    public void setInfo(int infoCode) {
43
        this.info = AppInfo.getStateInfo(infoCode);
44
    }
45
46
    public String toJSONString() {
47
        return toString();
48
    }
49
50
    public String toString() {
51
        String key = null;
52
        String stateVal = isSuccess() ? AppInfo.getStateInfo(0) : this.info;
53
54
        StringBuilder builder = new StringBuilder();
55
56
        builder.append("{\"state\": \"" + stateVal + "\"");
57
58
        Iterator<String> iterator = this.infoMap.keySet().iterator();
59
        while (iterator.hasNext()) {
60
            key = (String) iterator.next();
61
62
            builder.append(",\"" + key + "\": \"" + (String) this.infoMap.get(key) + "\"");
63
        }
64
        builder.append("}");
65
66
        return toUnicode(builder.toString());
67
    }
68
69
    public void putInfo(String name, String val) {
70
        this.infoMap.put(name, val);
71
    }
72
73
    public void putInfo(String name, long val) {
74
        putInfo(name,""+val);
75
    }
76
77
    public static String toUnicode(String input) {
78
        StringBuilder builder = new StringBuilder();
79
        char[] chars = input.toCharArray();
80
        for (char ch : chars) {
81
            if (ch < '\u0100') {
82
                builder.append(ch);
83
            } else {
84
                builder.append("\\u" + Integer.toHexString(ch & 0xFFFF));
85
            }
86
        }
87
        return builder.toString();
88
    }
89
}

+ 11 - 0
src/main/java/com/ekexiu/project/editor/define/State.java

@ -0,0 +1,11 @@
1
package com.ekexiu.project.editor.define;
2
3
public interface State {
4
   boolean isSuccess();
5
6
   void putInfo(String name, String val);
7
8
   void putInfo(String name, long val);
9
10
    String toJSONString();
11
}

+ 1 - 1
src/main/java/com/ekexiu/project/platform/article/Article.java

@ -38,7 +38,7 @@ public class Article implements ManagedBaseTable {
38 38
        this.id = id;
39 39
    }
40 40

41
    @Column(descp = "内容分享ID", value = DE.long_de, insertable = false, renewable = false)
41
    @Column(descp = "内容分享ID", value = DE.bigSerial, insertable = false, renewable = false)
42 42
    public long getShareId() {
43 43
        return shareId;
44 44
    }

+ 2 - 0
src/main/java/com/ekexiu/project/platform/base/po/ManagedBaseTable.java

@ -1,8 +1,10 @@
1 1
package com.ekexiu.project.platform.base.po;
2 2

3 3
import org.jfw.apt.orm.annotation.entry.Column;
4
import org.jfw.apt.orm.annotation.entry.VirtualTable;
4 5
import org.jfw.apt.orm.core.enums.DE;
5 6

7
@VirtualTable
6 8
public interface ManagedBaseTable extends BaseTable {
7 9
	@Column(descp="创建人ID",value= DE.id_32)
8 10
	String getCreator();

+ 72 - 0
src/main/java/com/ekexiu/project/platform/company/CompInvite.java

@ -0,0 +1,72 @@
1
package com.ekexiu.project.platform.company;
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/11/20.
9
 */
10
@Table(descp = "企业邀请表", value = "COMP_INVITE")
11
public class CompInvite {
12
    private String id;
13
    private String email;
14
    private String inviteCode;
15
    private String lastTime;
16
    private String lastInviter;
17
    private boolean active;
18
19
    @Column(descp = "企业ID", value = DE.id_32)
20
    public String getId() {
21
        return id;
22
    }
23
24
    public void setId(String id) {
25
        this.id = id;
26
    }
27
28
    @Column(descp = "联系邮箱", value = DE.text_de)
29
    public String getEmail() {
30
        return email;
31
    }
32
33
    public void setEmail(String email) {
34
        this.email = email;
35
    }
36
37
    @Column(descp = "邀请码", value = DE.text_de)
38
    public String getInviteCode() {
39
        return inviteCode;
40
    }
41
42
    public void setInviteCode(String inviteCode) {
43
        this.inviteCode = inviteCode;
44
    }
45
46
    @Column(descp = "最后邀请时间", value = DE.dateTime_de)
47
    public String getLastTime() {
48
        return lastTime;
49
    }
50
51
    public void setLastTime(String lastTime) {
52
        this.lastTime = lastTime;
53
    }
54
55
    @Column(descp = "最后邀请人", value = DE.id_32)
56
    public String getLastInviter() {
57
        return lastInviter;
58
    }
59
60
    public void setLastInviter(String lastInviter) {
61
        this.lastInviter = lastInviter;
62
    }
63
64
    @Column(descp = "有效标识", value = DE.boolean_de)
65
    public boolean isActive() {
66
        return active;
67
    }
68
69
    public void setActive(boolean active) {
70
        this.active = active;
71
    }
72
}

+ 52 - 0
src/main/java/com/ekexiu/project/platform/company/CompKeyWord.java

@ -0,0 +1,52 @@
1
package com.ekexiu.project.platform.company;
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/11/26.
9
 */
10
@Table(descp = "企业关键词")
11
public class CompKeyWord {
12
    private String id;
13
    private int type;
14
    private String value;
15
    private int num;
16
17
    @Column(descp = "企业ID", value = DE.text_de)
18
    public String getId() {
19
        return id;
20
    }
21
22
    public void setId(String id) {
23
        this.id = id;
24
    }
25
26
    @Column(descp = "关键词类型(所属行业:1,专注领域:2,企业资质:3,供应商领域:4,客户领域:5)", value = DE.int_de)
27
    public int getType() {
28
        return type;
29
    }
30
31
    public void setType(int type) {
32
        this.type = type;
33
    }
34
35
    @Column(descp = "关键词", value = DE.text_de)
36
    public String getValue() {
37
        return value;
38
    }
39
40
    public void setValue(String value) {
41
        this.value = value;
42
    }
43
44
    @Column(descp = "序号", value = DE.int_de)
45
    public int getNum() {
46
        return num;
47
    }
48
49
    public void setNum(int num) {
50
        this.num = num;
51
    }
52
}

+ 274 - 0
src/main/java/com/ekexiu/project/platform/company/Company.java

@ -0,0 +1,274 @@
1
package com.ekexiu.project.platform.company;
2
3
import com.ekexiu.project.platform.base.po.ManagedBaseTable;
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.enums.DE;
8
9
/**
10
 * Created by TT on 2018/11/19.
11
 */
12
@PrimaryKey("id")
13
@Table(descp = "企业信息", value = "COMPANY")
14
public class Company implements ManagedBaseTable {
15
16
    private String id;
17
    private long shareId;
18
    private String name;
19
    private String logo;
20
    private String type;
21
    private String size;
22
    private String foundYear;
23
    private String descp;
24
    private String url;
25
    private String location;
26
    private String addr;
27
    private String zipCode;
28
    private String servicePhone;
29
    private String serviceEmail;
30
    private String operateTime;
31
    private String linkman;
32
    private String job;
33
    private String department;
34
    private String linkphone;
35
    private String linkemail;
36
37
    private boolean active;
38
    private String activeTime;
39
40
    private String creator;
41
    private String modifier;
42
    private String createTime;
43
    private String modifyTime;
44
45
    @Column(descp = "企业ID", value = DE.id_32)
46
    public String getId() {
47
        return id;
48
    }
49
50
    public void setId(String id) {
51
        this.id = id;
52
    }
53
54
    @Column(descp = "共享ID", value = DE.bigSerial)
55
    public long getShareId() {
56
        return shareId;
57
    }
58
59
    public void setShareId(long shareId) {
60
        this.shareId = shareId;
61
    }
62
63
    @Column(descp = "企业名称", value = DE.text_de)
64
    public String getName() {
65
        return name;
66
    }
67
68
    public void setName(String name) {
69
        this.name = name;
70
    }
71
72
    @Column(descp = "企业logo", value = DE.Text_de)
73
    public String getLogo() {
74
        return logo;
75
    }
76
77
    public void setLogo(String logo) {
78
        this.logo = logo;
79
    }
80
81
    @Column(descp = "企业类型", value = DE.SingleChar)
82
    public String getType() {
83
        return type;
84
    }
85
86
    public void setType(String type) {
87
        this.type = type;
88
    }
89
90
    @Column(descp = "企业规模", value = DE.Text_de)
91
    public String getSize() {
92
        return size;
93
    }
94
95
    public void setSize(String size) {
96
        this.size = size;
97
    }
98
99
    @Column(descp = "创立年份", value = DE.Text_de)
100
    public String getFoundYear() {
101
        return foundYear;
102
    }
103
104
    public void setFoundYear(String foundYear) {
105
        this.foundYear = foundYear;
106
    }
107
108
    @Column(descp = "企业简介", value = DE.Text_de)
109
    public String getDescp() {
110
        return descp;
111
    }
112
113
    public void setDescp(String descp) {
114
        this.descp = descp;
115
    }
116
117
    @Column(descp = "官方网址", value = DE.Text_de)
118
    public String getUrl() {
119
        return url;
120
    }
121
122
    public void setUrl(String url) {
123
        this.url = url;
124
    }
125
126
    @Column(descp = "所在地", value = DE.Text_de)
127
    public String getLocation() {
128
        return location;
129
    }
130
131
    public void setLocation(String location) {
132
        this.location = location;
133
    }
134
135
    @Column(descp = "企业地址", value = DE.Text_de)
136
    public String getAddr() {
137
        return addr;
138
    }
139
140
    public void setAddr(String addr) {
141
        this.addr = addr;
142
    }
143
144
    @Column(descp = "企业邮编", value = DE.Text_de)
145
    public String getZipCode() {
146
        return zipCode;
147
    }
148
149
    public void setZipCode(String zipCode) {
150
        this.zipCode = zipCode;
151
    }
152
153
    @Column(descp = "客服电话", value = DE.Text_de)
154
    public String getServicePhone() {
155
        return servicePhone;
156
    }
157
158
    public void setServicePhone(String servicePhone) {
159
        this.servicePhone = servicePhone;
160
    }
161
162
    @Column(descp = "客服邮箱", value = DE.Text_de)
163
    public String getServiceEmail() {
164
        return serviceEmail;
165
    }
166
167
    public void setServiceEmail(String serviceEmail) {
168
        this.serviceEmail = serviceEmail;
169
    }
170
171
    @Column(descp = "工作时间", value = DE.Text_de)
172
    public String getOperateTime() {
173
        return operateTime;
174
    }
175
176
    public void setOperateTime(String operateTime) {
177
        this.operateTime = operateTime;
178
    }
179
180
    @Column(descp = "联系人", value = DE.Text_de)
181
    public String getLinkman() {
182
        return linkman;
183
    }
184
185
    public void setLinkman(String linkman) {
186
        this.linkman = linkman;
187
    }
188
189
    @Column(descp = "联系人职位", value = DE.Text_de)
190
    public String getJob() {
191
        return job;
192
    }
193
194
    public void setJob(String job) {
195
        this.job = job;
196
    }
197
198
    @Column(descp = "所在部门", value = DE.Text_de)
199
    public String getDepartment() {
200
        return department;
201
    }
202
203
    public void setDepartment(String department) {
204
        this.department = department;
205
    }
206
207
    @Column(descp = "联系人电话", value = DE.Text_de)
208
    public String getLinkphone() {
209
        return linkphone;
210
    }
211
212
    public void setLinkphone(String linkphone) {
213
        this.linkphone = linkphone;
214
    }
215
216
    @Column(descp = "联系人邮箱", value = DE.Text_de)
217
    public String getLinkemail() {
218
        return linkemail;
219
    }
220
221
    public void setLinkemail(String linkemail) {
222
        this.linkemail = linkemail;
223
    }
224
225
    @Column(descp = "激活状态", value = DE.boolean_de)
226
    public boolean isActive() {
227
        return active;
228
    }
229
230
    public void setActive(boolean active) {
231
        this.active = active;
232
    }
233
234
    @Column(descp = "激活时间", value = DE.DateTime_de)
235
    public String getActiveTime() {
236
        return activeTime;
237
    }
238
239
    public void setActiveTime(String activeTime) {
240
        this.activeTime = activeTime;
241
    }
242
243
    public String getCreator() {
244
        return creator;
245
    }
246
247
    public void setCreator(String creator) {
248
        this.creator = creator;
249
    }
250
251
    public String getModifier() {
252
        return modifier;
253
    }
254
255
    public void setModifier(String modifier) {
256
        this.modifier = modifier;
257
    }
258
259
    public String getCreateTime() {
260
        return createTime;
261
    }
262
263
    public void setCreateTime(String createTime) {
264
        this.createTime = createTime;
265
    }
266
267
    public String getModifyTime() {
268
        return modifyTime;
269
    }
270
271
    public void setModifyTime(String modifyTime) {
272
        this.modifyTime = modifyTime;
273
    }
274
}

+ 68 - 0
src/main/java/com/ekexiu/project/platform/company/CompanyDao.java

@ -0,0 +1,68 @@
1
package com.ekexiu.project.platform.company;
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.Dynamic;
6
import org.jfw.apt.orm.annotation.dao.method.From;
7
import org.jfw.apt.orm.annotation.dao.method.OrderBy;
8
import org.jfw.apt.orm.annotation.dao.method.SetSentence;
9
import org.jfw.apt.orm.annotation.dao.method.Where;
10
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
11
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
12
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
13
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
14
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
15
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
16
import org.jfw.util.PageQueryResult;
17
18
import java.sql.Connection;
19
import java.sql.SQLException;
20
21
/**
22
 * Created by TT on 2018/11/26.
23
 */
24
@DAO
25
public interface CompanyDao {
26
27
    @Insert
28
    int insert(Connection con, Company company) throws SQLException;
29
30
    @Update
31
    @Dynamic
32
    int update(Connection con, Company company) throws SQLException;
33
34
    @UpdateWith
35
    @From(Company.class)
36
    @Where("ACTIVE = '1'")
37
    @SetSentence("ACTIVE = '0'")
38
    int delete(Connection con, String id) throws SQLException;
39
40
    @SelectOne
41
    @Nullable
42
    Company query(Connection con, String id) throws SQLException;
43
44
    @SelectOne
45
    @Nullable
46
    Company queryByShareId(Connection con, long shareId) throws SQLException;
47
48
    @PageSelect
49
    @OrderBy("ORDER BY CREATE_TIME DESC")
50
    PageQueryResult<Company> pageQuery(Connection con, @Nullable Boolean active, @Nullable String name, int pageSize, int pageNo) throws SQLException;
51
52
    @Insert
53
    int insert(Connection con, CompKeyWord compKeyWord) throws SQLException;
54
55
    @DeleteWith
56
    @From(CompKeyWord.class)
57
    int deleteKeyWord(Connection con, String id) throws SQLException;
58
59
    @Insert
60
    int insert(Connection con, CompInvite compInvite) throws SQLException;
61
62
    @UpdateWith
63
    @From(CompInvite.class)
64
    @Where("ACTIVE = '1'")
65
    @SetSentence("ACTIVE = '0'")
66
    int invited(Connection con, String id) throws SQLException;
67
68
}

+ 55 - 0
src/main/java/com/ekexiu/project/platform/company/CompanyInfo.java

@ -0,0 +1,55 @@
1
package com.ekexiu.project.platform.company;
2
3
import org.jfw.apt.orm.annotation.entry.ExtendTable;
4
5
/**
6
 * Created by TT on 2018/11/26.
7
 */
8
@ExtendTable
9
public class CompanyInfo extends Company {
10
    private String industry;
11
    private String subject;
12
    private String fieldOfSupplier;
13
    private String fieldOfCustomer;
14
    private String qualification;
15
16
    public String getIndustry() {
17
        return industry;
18
    }
19
20
    public void setIndustry(String industry) {
21
        this.industry = industry;
22
    }
23
24
    public String getSubject() {
25
        return subject;
26
    }
27
28
    public void setSubject(String subject) {
29
        this.subject = subject;
30
    }
31
32
    public String getFieldOfSupplier() {
33
        return fieldOfSupplier;
34
    }
35
36
    public void setFieldOfSupplier(String fieldOfSupplier) {
37
        this.fieldOfSupplier = fieldOfSupplier;
38
    }
39
40
    public String getFieldOfCustomer() {
41
        return fieldOfCustomer;
42
    }
43
44
    public void setFieldOfCustomer(String fieldOfCustomer) {
45
        this.fieldOfCustomer = fieldOfCustomer;
46
    }
47
48
    public String getQualification() {
49
        return qualification;
50
    }
51
52
    public void setQualification(String qualification) {
53
        this.qualification = qualification;
54
    }
55
}

+ 10 - 0
src/main/java/com/ekexiu/project/platform/company/CompanyService.java

@ -0,0 +1,10 @@
1
package com.ekexiu.project.platform.company;
2
3
import org.jfw.apt.web.annotation.Path;
4
5
/**
6
 * Created by TT on 2018/11/26.
7
 */
8
@Path("/company")
9
public class CompanyService {
10
}

+ 5 - 0
src/main/java/com/ekexiu/project/platform/info/PlatformDao.java

@ -1,7 +1,9 @@
1 1
package com.ekexiu.project.platform.info;
2 2
3 3
import org.jfw.apt.orm.annotation.dao.DAO;
4
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
4 5
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
6
import org.jfw.util.exception.JfwBaseException;
5 7
6 8
import java.sql.Connection;
7 9
import java.sql.SQLException;
@ -14,4 +16,7 @@ public interface PlatformDao {
14 16
15 17
    @Update
16 18
    int update(Connection con, Platform platform) throws SQLException;
19
20
    @SelectOne
21
    Platform query(Connection con) throws SQLException, JfwBaseException;
17 22
}

+ 9 - 0
src/main/java/com/ekexiu/project/platform/info/PlatformService.java

@ -2,8 +2,10 @@ package com.ekexiu.project.platform.info;
2 2
3 3
import org.jfw.apt.annotation.Autowrie;
4 4
import org.jfw.apt.web.annotation.Path;
5
import org.jfw.apt.web.annotation.operate.Get;
5 6
import org.jfw.apt.web.annotation.operate.Put;
6 7
import org.jfw.apt.web.annotation.param.JdbcConn;
8
import org.jfw.util.exception.JfwBaseException;
7 9
8 10
import java.sql.Connection;
9 11
import java.sql.SQLException;
@ -30,4 +32,11 @@ public class PlatformService {
30 32
    public int update(@JdbcConn(true) Connection con, Platform platform) throws SQLException {
31 33
        return platformDao.update(con, platform);
32 34
    }
35
36
    @Path("/get")
37
    @Get
38
    public Platform query(@JdbcConn Connection con)throws SQLException, JfwBaseException {
39
        return platformDao.query(con);
40
    }
41
33 42
}

+ 1 - 1
src/main/java/com/ekexiu/project/platform/organization/Organization.java

@ -26,7 +26,7 @@ public class Organization {
26 26
        this.id = id;
27 27
    }
28 28
29
    @Column(descp = "合作机构共享ID", value = DE.long_de)
29
    @Column(descp = "合作机构共享ID", value = DE.bigSerial)
30 30
    public long getShareId() {
31 31
        return shareId;
32 32
    }

+ 176 - 0
src/main/java/com/ekexiu/project/platform/product/Product.java

@ -0,0 +1,176 @@
1
package com.ekexiu.project.platform.product;
2
3
import com.ekexiu.project.platform.base.po.ManagedBaseTable;
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.enums.DE;
8
9
/**
10
 * Created by TT on 2018/11/20.
11
 */
12
@PrimaryKey("id")
13
@Table(descp = "产品表",value = "PRODUCT")
14
public class Product implements ManagedBaseTable {
15
    private String id;
16
    private long shareId;
17
    private String companyId;
18
    private String img;
19
    private String name;
20
    private String cnt;
21
    private String descp;
22
    private String spec;
23
    private String producingArea;
24
    private String price;
25
    private String parameter;
26
27
    private boolean active;
28
29
    private String creator;
30
    private String modifier;
31
    private String createTime;
32
    private String modifyTime;;
33
34
    @Column(descp="产品ID",value = DE.id_32)
35
    public String getId() {
36
        return id;
37
    }
38
39
    public void setId(String id) {
40
        this.id = id;
41
    }
42
43
    @Column(descp = "分享ID", value = DE.bigSerial)
44
    public long getShareId() {
45
        return shareId;
46
    }
47
48
    public void setShareId(long shareId) {
49
        this.shareId = shareId;
50
    }
51
52
    @Column(descp="所属企业ID",value = DE.id_32)
53
    public String getCompanyId() {
54
        return companyId;
55
    }
56
57
    public void setCompanyId(String companyId) {
58
        this.companyId = companyId;
59
    }
60
61
    @Column(descp="产品图片",value = DE.Text_de)
62
    public String getImg() {
63
        return img;
64
    }
65
66
    public void setImg(String img) {
67
        this.img = img;
68
    }
69
70
    @Column(descp="产品名称",value = DE.Text_de)
71
    public String getName() {
72
        return name;
73
    }
74
75
    public void setName(String name) {
76
        this.name = name;
77
    }
78
79
    @Column(descp="产品简介",value = DE.Text_de)
80
    public String getCnt() {
81
        return cnt;
82
    }
83
84
    public void setCnt(String cnt) {
85
        this.cnt = cnt;
86
    }
87
88
    @Column(descp="产品描述",value = DE.Text_de)
89
    public String getDescp() {
90
        return descp;
91
    }
92
93
    public void setDescp(String descp) {
94
        this.descp = descp;
95
    }
96
97
    @Column(descp="厂商型号",value = DE.Text_de)
98
    public String getSpec() {
99
        return spec;
100
    }
101
102
    public void setSpec(String spec) {
103
        this.spec = spec;
104
    }
105
106
    @Column(descp="产地",value = DE.Text_de)
107
    public String getProducingArea() {
108
        return producingArea;
109
    }
110
111
    public void setProducingArea(String producingArea) {
112
        this.producingArea = producingArea;
113
    }
114
115
    @Column(descp="价格",value = DE.Text_de)
116
    public String getPrice() {
117
        return price;
118
    }
119
120
    public void setPrice(String price) {
121
        this.price = price;
122
    }
123
124
    @Column(descp="性能参数",value = DE.Text_de)
125
    public String getParameter() {
126
        return parameter;
127
    }
128
129
    public void setParameter(String parameter) {
130
        this.parameter = parameter;
131
    }
132
133
    @Column(descp="有效标识",value = DE.boolean_de)
134
    public boolean isActive() {
135
        return active;
136
    }
137
138
    public void setActive(boolean active) {
139
        this.active = active;
140
    }
141
142
    @Column(descp="创建人ID",value = DE.id_32)
143
    public String getCreator() {
144
        return creator;
145
    }
146
147
    public void setCreator(String creator) {
148
        this.creator = creator;
149
    }
150
151
    @Column(descp="最后修改人",value = DE.refid_32)
152
    public String getModifier() {
153
        return modifier;
154
    }
155
156
    public void setModifier(String modifier) {
157
        this.modifier = modifier;
158
    }
159
160
    public String getCreateTime() {
161
        return createTime;
162
    }
163
164
    public void setCreateTime(String createTime) {
165
        this.createTime = createTime;
166
    }
167
168
    public String getModifyTime() {
169
        return modifyTime;
170
    }
171
172
    public void setModifyTime(String modifyTime) {
173
        this.modifyTime = modifyTime;
174
    }
175
176
}

+ 12 - 0
src/main/java/com/ekexiu/project/platform/product/ProductDao.java

@ -0,0 +1,12 @@
1
package com.ekexiu.project.platform.product;
2
3
import org.jfw.apt.orm.annotation.dao.DAO;
4
5
/**
6
 * Created by TT on 2018/11/26.
7
 */
8
@DAO
9
public interface ProductDao {
10
11
12
}

+ 42 - 0
src/main/java/com/ekexiu/project/platform/product/ProductKeyWord.java

@ -0,0 +1,42 @@
1
package com.ekexiu.project.platform.product;
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/11/26.
9
 */
10
@Table(descp = "产品关键词")
11
public class ProductKeyWord {
12
    private String id;
13
    private String keyword;
14
    private int num;
15
16
    @Column(descp = "产品ID", value = 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(descp = "关键词", value = DE.Text_de)
26
    public String getKeyword() {
27
        return keyword;
28
    }
29
30
    public void setKeyword(String keyword) {
31
        this.keyword = keyword;
32
    }
33
34
    @Column(descp = "序号", value = DE.int_de)
35
    public int getNum() {
36
        return num;
37
    }
38
39
    public void setNum(int num) {
40
        this.num = num;
41
    }
42
}

+ 10 - 0
src/main/java/com/ekexiu/project/platform/product/ProductService.java

@ -0,0 +1,10 @@
1
package com.ekexiu.project.platform.product;
2
3
import org.jfw.apt.web.annotation.Path;
4
5
/**
6
 * Created by TT on 2018/11/26.
7
 */
8
@Path("/product")
9
public class ProductService {
10
}

+ 1 - 1
src/main/java/com/ekexiu/project/platform/professor/Professor.java

@ -23,7 +23,7 @@ public class Professor {
23 23
        this.id = id;
24 24
    }
25 25
26
    @Column(descp = "特约专家共享ID", value = DE.long_de)
26
    @Column(descp = "特约专家共享ID", value = DE.bigSerial)
27 27
    public long getShareId() {
28 28
        return shareId;
29 29
    }

+ 31 - 11
src/main/java/com/ekexiu/project/platform/system/dao/UserDao.java

@ -5,6 +5,7 @@ import com.ekexiu.project.platform.system.po.Manager;
5 5
import com.ekexiu.project.platform.system.po.SysRight;
6 6
import com.ekexiu.project.platform.system.po.User;
7 7
import com.ekexiu.project.platform.system.po.UserLoginLog;
8
import com.ekexiu.project.platform.system.vo.ManagerInfo;
8 9
import org.jfw.apt.annotation.Nullable;
9 10
import org.jfw.apt.orm.annotation.dao.Batch;
10 11
import org.jfw.apt.orm.annotation.dao.Column;
@ -17,12 +18,15 @@ import org.jfw.apt.orm.annotation.dao.method.SetSentence;
17 18
import org.jfw.apt.orm.annotation.dao.method.Where;
18 19
import org.jfw.apt.orm.annotation.dao.method.operator.DeleteWith;
19 20
import org.jfw.apt.orm.annotation.dao.method.operator.Insert;
21
import org.jfw.apt.orm.annotation.dao.method.operator.PageQuery;
20 22
import org.jfw.apt.orm.annotation.dao.method.operator.PageSelect;
23
import org.jfw.apt.orm.annotation.dao.method.operator.QueryOne;
21 24
import org.jfw.apt.orm.annotation.dao.method.operator.QueryValList;
22 25
import org.jfw.apt.orm.annotation.dao.method.operator.SelectOne;
23 26
import org.jfw.apt.orm.annotation.dao.method.operator.Update;
24 27
import org.jfw.apt.orm.annotation.dao.method.operator.UpdateWith;
25 28
import org.jfw.apt.orm.annotation.dao.param.Alias;
29
import org.jfw.apt.orm.annotation.dao.param.GroupSqlColumn;
26 30
import org.jfw.apt.orm.annotation.dao.param.Set;
27 31
import org.jfw.apt.orm.annotation.dao.param.UnEquals;
28 32
import org.jfw.apt.orm.core.defaultImpl.StringHandler;
@ -63,8 +67,8 @@ public interface UserDao {
63 67
    int update(Connection con, User user) throws SQLException;
64 68
65 69
    @UpdateWith
66
    @From(User.class)
67
    int changePasswd(Connection con, String id, String passwd, @Set @Alias("passwd") String newPasswd) throws SQLException;
70
    @From(Manager.class)
71
    int changePasswd(Connection con, String id, @Set @Alias("passwd") String newPasswd) throws SQLException;
68 72
69 73
    @UpdateWith
70 74
    @From(User.class)
@ -89,6 +93,19 @@ public interface UserDao {
89 93
    @From(InvalidUser.class)
90 94
    int validUser(Connection con, String id) throws SQLException;
91 95
96
    @PageSelect
97
    @Where("ACTIVE ='1'")
98
    @OrderBy("ORDER BY CREATE_TIME DESC")
99
    PageQueryResult<User> pageQuery(Connection con, @GroupSqlColumn(handlerClass = StringHandler.class, value = {"ACCOUNT LIKE ?", "LOGIN_PHONE LIKE ?"}, isAnd = false) @Nullable String key, int pageSize, int pageNo) throws SQLException;
100
101
    @PageSelect
102
    @OrderBy("ORDER BY INVALID_TIME DESC")
103
    PageQueryResult<InvalidUser> pageQueryInvalidUser(Connection con,@GroupSqlColumn(handlerClass = StringHandler.class, value = {"ACCOUNT LIKE ?", "LOGIN_PHONE LIKE ?"}, isAnd = false) @Nullable String key, int pageSize, int pageNo) throws SQLException;
104
105
    @Nullable
106
    @SelectOne
107
    InvalidUser queryInvalidUser(Connection con, String id) throws SQLException;
108
92 109
    /**
93 110
     * 后台用户
94 111
     */
@ -123,8 +140,9 @@ public interface UserDao {
123 140
    int enable(Connection con, String id) throws SQLException;
124 141
125 142
    @Nullable
126
    @SelectOne
127
    Manager managerLogin(Connection con, String account, String passwd) throws SQLException;
143
    @QueryOne
144
    @From(Manager.class)
145
    ManagerInfo managerLogin(Connection con, String account, String passwd) throws SQLException;
128 146
129 147
    @Nullable
130 148
    @QueryValList
@ -134,21 +152,23 @@ public interface UserDao {
134 152
135 153
    @Nullable
136 154
    @SelectOne
137
    Manager queryManagerByLoginPhone(Connection con, String account, Boolean actived) throws SQLException;
155
    Manager queryManagerByLoginPhone(Connection con, String account,@Nullable Boolean actived) throws SQLException;
138 156
139 157
    @UpdateWith
140 158
    @From(Manager.class)
141
    int changeManagerPasswd(Connection con, String id, String passwd, @Set @Alias("passwd") String newPasswd) throws SQLException;
159
    int changeManagerPasswd(Connection con, String id,@Set String passwd) throws SQLException;
142 160
143 161
    @UpdateWith
144 162
    @From(Manager.class)
145 163
    int managerResetPasswd(Connection con, String id, @Set String passwd) throws SQLException;
146 164
147
    @PageSelect
148
    @OrderBy("CREATE_TIME DESC")
149
    PageQueryResult<Manager> managerPageQuery(Connection con, boolean actived, int pageSize, int pageNo) throws SQLException;
165
    @PageQuery
166
    @From(Manager.class)
167
    @OrderBy("ORDER BY CREATE_TIME DESC")
168
    PageQueryResult<ManagerInfo> managerPageQuery(Connection con,@UnEquals String id, boolean actived, int pageSize, int pageNo) throws SQLException;
150 169
151 170
    @Nullable
152
    @SelectOne
153
    Manager managerQuery(Connection con, String id) throws SQLException;
171
    @QueryOne
172
    @From(Manager.class)
173
    ManagerInfo managerQuery(Connection con, String id) throws SQLException;
154 174
}

+ 298 - 234
src/main/java/com/ekexiu/project/platform/system/service/CommonUtilService.java

@ -21,241 +21,305 @@ import java.util.concurrent.atomic.AtomicInteger;
21 21

22 22
@Path("")
23 23
public class CommonUtilService {
24
	public static final String JPG = "jpg";
25

26
	private static final AtomicInteger HEAD_FN_IDX = new AtomicInteger(1);
27
	private File headPath;
28
	
29
	private static final AtomicInteger LOGO_FN_IDX = new AtomicInteger(1);
30
	private File logoPath;
31
	
32
	
33
	private static final AtomicInteger ARTICLE_FN_IDX = new AtomicInteger(1);
34
	private File articlePath;
35
	
36
	private int headMaxHeight = Integer.MAX_VALUE;
37
	
38
	
39

40
	public File getHeadPath() {
41
		return headPath;
42
	}
43

44
	public void setHeadPath(File headPath) {
45
		this.headPath = headPath;
46
	}
47

48
	public File getArticlePath() {
49
		return articlePath;
50
	}
51

52
	public void setArticlePath(File articlePath) {
53
		this.articlePath = articlePath;
54
	}
55

56
	public File getLogoPath() {
57
		return logoPath;
58
	}
59

60
	public void setLogoPath(File logoPath) {
61
		this.logoPath = logoPath;
62
	}
63

64
	public int getHeadMaxHeight() {
65
		return headMaxHeight;
66
	}
67

68
	public void setHeadMaxHeight(int headMaxHeight) {
69
		this.headMaxHeight = headMaxHeight;
70
	}
71

72
	private String normalizeFileName(String fn) {
73
		int index = fn.indexOf('\\');
74
		if (index >= 0) {
75
			fn = fn.substring(fn.lastIndexOf('\\') + 1);
76
		}
77
		index = fn.indexOf('/');
78
		if (index >= 0) {
79
			fn = fn.substring(fn.lastIndexOf('/') + 1);
80
		}
81
		if (fn.length() == 0)
82
			throw new RuntimeException("invalid filename in Multipart/data request");
83
		return fn;
84
	}
85

86
	private UploadFile buildTargetFile(File parentPath, AtomicInteger FN_IDX, String ext) {
87
		StringBuilder sb = new StringBuilder();
88
		sb.append("/").append(System.currentTimeMillis() / (1000 * 60 * 60 * 24));
89
		File path = new File(parentPath, sb.toString());
90
		if (!path.exists()) {
91
			synchronized (this) {
92
				if (!path.mkdirs())
93
					throw new RuntimeException("mkdir error[" + path + "]");
94
				FN_IDX.set(1);
95
			}
96
		}
97
		File file;
98
		do {
99
			String fn = FN_IDX.toString();
100
			if (ext.isEmpty()) {
101
				file = new File(path, fn);
102
			} else {
103
				file = new File(path, fn + "." + ext);
104
			}
105
			FN_IDX.incrementAndGet();
106
		} while (file.exists());
107
		sb.append("/").append(file.getName());
108
		UploadFile uf = new UploadFile();
109
		uf.setFn(file);
110
		uf.setUri(sb.toString());
111
		return uf;
112
	}
113

114
	private void saveHeadPhoto(InputStream in, UploadFile file) throws IOException {
115
		byte[] buf = new byte[8092];
116
		int w, h, sx1, sx2, sy1, sy2;
117
		int len;
118
		ByteArrayOutputStream of = new ByteArrayOutputStream();
119
		while ((len = in.read(buf)) >= 0) {
120
			if (len > 0) {
121
				of.write(buf, 0, len);
122
			}
123
		}
124
		BufferedImage im = ImageIO.read(in);
125
		if(im == null){
126
			throw new IOException("unsupported image type");
127
		}
128
		sx1 = 0;
129
		sy1 = 0;
130
		sx2 = w = im.getWidth();
131
		sy2 = h = im.getHeight();
132
		if (w > h) {
133
			sx1 = (w - h) / 2;
134
			sx2 = sx1 + h;
135
			w = h;
136
		} else if (w < h) {
137
			sy1 = (h - w) / 2;
138
			sy2 = sy1 + w;
139
			h = w;
140
		}
141
		if (h > this.headMaxHeight) {
142
			w = h = this.headMaxHeight;
143
		}
144
		BufferedImage newBufferedImage = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
145
		newBufferedImage.createGraphics().drawImage(im, 0, 0, w, h, sx1, sy1, sx2, sy2, Color.WHITE, null);
146
		OutputStream fos = new FileOutputStream(file.getFn());
147
		try {
148
			ImageIO.write(newBufferedImage, JPG, fos);
149
			fos.flush();
150
			file.setSize(file.getFn().length());
151
		} finally {
152
			IoUtil.close(fos);
153
		}
154
	}
155

156
	@Post
157
	@Path("/manager/head")
158
	public UploadFile userHeadUpload(@Upload UploadItemIterator it) throws IOException {
159
		UploadFile uf = null;
160
		try {
161
			while (it.hasNext()) {
162
				Item item = it.next();
163
				if (!item.isFormField()) {
164
					String name = normalizeFileName(item.getName());
165
					int index = name.lastIndexOf('.');
166
					String ext = index >= 0 ? name.substring(index + 1) : "";
167
					ext = ext.trim();
168
					uf = buildTargetFile(this.headPath, HEAD_FN_IDX, ext);
169
					uf.setName(name);
170
					InputStream in = item.getInputStream();
171
					try {
172
						saveHeadPhoto(in, uf);
173
						return uf;
174
					} finally {
175
						in.close();
176
					}
177
				}
178
			}
179
		} finally {
180
			if (it != null)
181
				it.clean();
182
		}
183
		return uf;
184
	}
185

186

187
	@Post
188
	@Path("/logo")
189
	public UploadFile logoUpload(@Upload UploadItemIterator it) throws IOException {
190
		UploadFile uf = null;
191
		try {
192
			while (it.hasNext()) {
193
				Item item = it.next();
194
				if (!item.isFormField()) {
195
					String name = normalizeFileName(item.getName());
196
					int index = name.lastIndexOf('.');
197
					String ext = index >= 0 ? name.substring(index + 1) : "";
198
					ext = ext.trim();
199
					uf = buildTargetFile(this.logoPath, LOGO_FN_IDX, ext);
200
					uf.setName(name);
201
					InputStream in = item.getInputStream();
202
					try {
203
						OutputStream fos = new FileOutputStream(uf.getFn());
204
						try{
205
							IoUtil.copy(in, fos, false,false);
206
							fos.flush();
207
						}finally{
208
							fos.close();
209
						}
210
						return uf;
211
					} finally {
212
						in.close();
213
					}
214
				}
215
			}
216
		} finally {
217
			if (it != null)
218
				it.clean();
219
		}
220
		return uf;
221
	}
222
	
223
	@Post
224
	@Path("/article/image")
225
	public UploadFile articleImageUpload(@Upload UploadItemIterator it) throws IOException {
226
		UploadFile uf = null;
227
		try {
228
			while (it.hasNext()) {
229
				Item item = it.next();
230
				if (!item.isFormField()) {
231
					String name = normalizeFileName(item.getName());
232
					int index = name.lastIndexOf('.');
233
					String ext = index >= 0 ? name.substring(index + 1) : "";
234
					ext = ext.trim();
235
					uf = buildTargetFile(this.articlePath, ARTICLE_FN_IDX, ext);
236
					uf.setName(name);
237
					InputStream in = item.getInputStream();
238
					try {
239
						OutputStream fos = new FileOutputStream(uf.getFn());
240
						try{
241
							IoUtil.copy(in, fos, false,false);
242
							fos.flush();
243
						}finally{
244
							fos.close();
245
						}
246
						return uf;
247
					} finally {
248
						in.close();
249
					}
250
				}
251
			}
252
		} finally {
253
			if (it != null)
254
				it.clean();
255
		}
256
		return uf;
257
	}
258 24

25
    public String rootPath;
26

27
    public static final String JPG = "jpg";
28

29
    private static final AtomicInteger LOGO_FN_IDX = new AtomicInteger(1);
30
    private File logoPath;
31

32
    private static final AtomicInteger ARTICLE_FN_IDX = new AtomicInteger(1);
33
    private File articlePath;
34

35
    private static final AtomicInteger COMPANY_FN_IDX = new AtomicInteger(1);
36
    private File companyPath;
37

38
    private static final AtomicInteger PRODUCT_FN_IDX = new AtomicInteger(1);
39
    private File productPath;
40

41
    private int headMaxHeight = Integer.MAX_VALUE;
42

43

44
    public String getRootPath() {
45
        return rootPath;
46
    }
47

48
    public void setRootPath(String rootPath) {
49
        this.rootPath = rootPath;
50
    }
51

52
    public File getArticlePath() {
53
        return articlePath;
54
    }
55

56
    public void setArticlePath(File articlePath) {
57
        this.articlePath = articlePath;
58
    }
59

60
    public File getLogoPath() {
61
        return logoPath;
62
    }
63

64
    public void setLogoPath(File logoPath) {
65
        this.logoPath = logoPath;
66
    }
67

68
    public File getCompanyPath() {
69
        return companyPath;
70
    }
71

72
    public void setCompanyPath(File companyPath) {
73
        this.companyPath = companyPath;
74
    }
75

76
    public File getProductPath() {
77
        return productPath;
78
    }
79

80
    public void setProductPath(File productPath) {
81
        this.productPath = productPath;
82
    }
83

84
    public int getHeadMaxHeight() {
85
        return headMaxHeight;
86
    }
87

88
    public void setHeadMaxHeight(int headMaxHeight) {
89
        this.headMaxHeight = headMaxHeight;
90
    }
91

92
    private String normalizeFileName(String fn) {
93
        int index = fn.indexOf('\\');
94
        if (index >= 0) {
95
            fn = fn.substring(fn.lastIndexOf('\\') + 1);
96
        }
97
        index = fn.indexOf('/');
98
        if (index >= 0) {
99
            fn = fn.substring(fn.lastIndexOf('/') + 1);
100
        }
101
        if (fn.length() == 0)
102
            throw new RuntimeException("invalid filename in Multipart/data request");
103
        return fn;
104
    }
105

106
    private UploadFile buildTargetFile(File parentPath, AtomicInteger FN_IDX, String ext) {
107
        StringBuilder sb = new StringBuilder();
108
        sb.append("/").append(System.currentTimeMillis() / (1000 * 60 * 60 * 24));
109
        File path = new File(parentPath, sb.toString());
110
        if (!path.exists()) {
111
            synchronized (this) {
112
                if (!path.mkdirs())
113
                    throw new RuntimeException("mkdir error[" + path + "]");
114
                FN_IDX.set(1);
115
            }
116
        }
117
        File file;
118
        do {
119
            String fn = FN_IDX.toString();
120
            if (ext.isEmpty()) {
121
                file = new File(path, fn);
122
            } else {
123
                file = new File(path, fn + "." + ext);
124
            }
125
            FN_IDX.incrementAndGet();
126
        } while (file.exists());
127
        sb.append("/").append(file.getName());
128
        UploadFile uf = new UploadFile();
129
        uf.setFn(file);
130
        uf.setUri(sb.toString());
131
        return uf;
132
    }
133

134
    private void saveHeadPhoto(InputStream in, UploadFile file) throws IOException {
135
        byte[] buf = new byte[8092];
136
        int w, h, sx1, sx2, sy1, sy2;
137
        int len;
138
        ByteArrayOutputStream of = new ByteArrayOutputStream();
139
        while ((len = in.read(buf)) >= 0) {
140
            if (len > 0) {
141
                of.write(buf, 0, len);
142
            }
143
        }
144
        BufferedImage im = ImageIO.read(in);
145
        if (im == null) {
146
            throw new IOException("unsupported image type");
147
        }
148
        sx1 = 0;
149
        sy1 = 0;
150
        sx2 = w = im.getWidth();
151
        sy2 = h = im.getHeight();
152
        if (w > h) {
153
            sx1 = (w - h) / 2;
154
            sx2 = sx1 + h;
155
            w = h;
156
        } else if (w < h) {
157
            sy1 = (h - w) / 2;
158
            sy2 = sy1 + w;
159
            h = w;
160
        }
161
        if (h > this.headMaxHeight) {
162
            w = h = this.headMaxHeight;
163
        }
164
        BufferedImage newBufferedImage = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
165
        newBufferedImage.createGraphics().drawImage(im, 0, 0, w, h, sx1, sy1, sx2, sy2, Color.WHITE, null);
166
        OutputStream fos = new FileOutputStream(file.getFn());
167
        try {
168
            ImageIO.write(newBufferedImage, JPG, fos);
169
            fos.flush();
170
            file.setSize(file.getFn().length());
171
        } finally {
172
            IoUtil.close(fos);
173
        }
174
    }
175

176
    @Post
177
    @Path("/platform/logo")
178
    public UploadFile logoUpload(@Upload UploadItemIterator it) throws IOException {
179
        UploadFile uf = null;
180
        try {
181
            while (it.hasNext()) {
182
                Item item = it.next();
183
                if (!item.isFormField()) {
184
                    String name = normalizeFileName(item.getName());
185
                    int index = name.lastIndexOf('.');
186
                    String ext = index >= 0 ? name.substring(index + 1) : "";
187
                    ext = ext.trim();
188
                    uf = buildTargetFile(this.logoPath, LOGO_FN_IDX, ext);
189
                    uf.setName(name);
190
                    InputStream in = item.getInputStream();
191
                    try {
192
                        OutputStream fos = new FileOutputStream(uf.getFn());
193
                        try {
194
                            IoUtil.copy(in, fos, false, false);
195
                            fos.flush();
196
                        } finally {
197
                            fos.close();
198
                        }
199
                        uf.setUri(rootPath + "/data/logo" + uf.getUri());
200
                        return uf;
201
                    } finally {
202
                        in.close();
203
                    }
204
                }
205
            }
206
        } finally {
207
            if (it != null)
208
                it.clean();
209
        }
210
        return uf;
211
    }
212

213
    @Post
214
    @Path("/article/image")
215
    public UploadFile articleImageUpload(@Upload UploadItemIterator it) throws IOException {
216
        UploadFile uf = null;
217
        try {
218
            while (it.hasNext()) {
219
                Item item = it.next();
220
                if (!item.isFormField()) {
221
                    String name = normalizeFileName(item.getName());
222
                    int index = name.lastIndexOf('.');
223
                    String ext = index >= 0 ? name.substring(index + 1) : "";
224
                    ext = ext.trim();
225
                    uf = buildTargetFile(this.articlePath, ARTICLE_FN_IDX, ext);
226
                    uf.setName(name);
227
                    InputStream in = item.getInputStream();
228
                    try {
229
                        OutputStream fos = new FileOutputStream(uf.getFn());
230
                        try {
231
                            IoUtil.copy(in, fos, false, false);
232
                            fos.flush();
233
                        } finally {
234
                            fos.close();
235
                        }
236
                        uf.setUri(rootPath + "/data/article/logo" + uf.getUri());
237
                        return uf;
238
                    } finally {
239
                        in.close();
240
                    }
241
                }
242
            }
243
        } finally {
244
            if (it != null)
245
                it.clean();
246
        }
247
        return uf;
248
    }
249

250
    @Post
251
    @Path("/company/logo")
252
    public UploadFile companyImageUpload(@Upload UploadItemIterator it) throws IOException {
253
        UploadFile uf = null;
254
        try {
255
            while (it.hasNext()) {
256
                Item item = it.next();
257
                if (!item.isFormField()) {
258
                    String name = normalizeFileName(item.getName());
259
                    int index = name.lastIndexOf('.');
260
                    String ext = index >= 0 ? name.substring(index + 1) : "";
261
                    ext = ext.trim();
262
                    uf = buildTargetFile(this.companyPath, COMPANY_FN_IDX, ext);
263
                    uf.setName(name);
264
                    InputStream in = item.getInputStream();
265
                    try {
266
                        OutputStream fos = new FileOutputStream(uf.getFn());
267
                        try {
268
                            IoUtil.copy(in, fos, false, false);
269
                            fos.flush();
270
                        } finally {
271
                            fos.close();
272
                        }
273
                        uf.setUri(rootPath + "/data/company/logo" + uf.getUri());
274
                        return uf;
275
                    } finally {
276
                        in.close();
277
                    }
278
                }
279
            }
280
        } finally {
281
            if (it != null)
282
                it.clean();
283
        }
284
        return uf;
285
    }
286

287
    @Post
288
    @Path("/product/logo")
289
    public UploadFile productImageUpload(@Upload UploadItemIterator it) throws IOException {
290
        UploadFile uf = null;
291
        try {
292
            while (it.hasNext()) {
293
                Item item = it.next();
294
                if (!item.isFormField()) {
295
                    String name = normalizeFileName(item.getName());
296
                    int index = name.lastIndexOf('.');
297
                    String ext = index >= 0 ? name.substring(index + 1) : "";
298
                    ext = ext.trim();
299
                    uf = buildTargetFile(this.productPath, PRODUCT_FN_IDX, ext);
300
                    uf.setName(name);
301
                    InputStream in = item.getInputStream();
302
                    try {
303
                        OutputStream fos = new FileOutputStream(uf.getFn());
304
                        try {
305
                            IoUtil.copy(in, fos, false, false);
306
                            fos.flush();
307
                        } finally {
308
                            fos.close();
309
                        }
310
                        uf.setUri(rootPath + "/data/product/logo" + uf.getUri());
311
                        return uf;
312
                    } finally {
313
                        in.close();
314
                    }
315
                }
316
            }
317
        } finally {
318
            if (it != null)
319
                it.clean();
320
        }
321
        return uf;
322
    }
259 323

260 324

261 325
}

+ 108 - 20
src/main/java/com/ekexiu/project/platform/system/service/SysService.java

@ -7,6 +7,7 @@ import com.ekexiu.project.platform.system.po.SysRight;
7 7
import com.ekexiu.project.platform.system.po.User;
8 8
import com.ekexiu.project.platform.system.vo.ManagerInfo;
9 9
import com.ekexiu.project.platform.system.vo.SessionManager;
10
import com.ekexiu.project.platform.system.vo.SessionUser;
10 11
import org.jfw.apt.annotation.Autowrie;
11 12
import org.jfw.apt.annotation.Nullable;
12 13
import org.jfw.apt.web.annotation.LoginUser;
@ -24,16 +25,20 @@ import org.jfw.util.PageQueryResult;
24 25
import org.jfw.util.StringUtil;
25 26
import org.jfw.util.auth.AuthUser;
26 27
import org.jfw.util.exception.JfwBaseException;
28
import org.jfw.util.jdbc.JdbcUtil;
29
import org.jfw.util.jdbc.PreparedStatementConfig;
27 30
28 31
import java.sql.Connection;
32
import java.sql.PreparedStatement;
29 33
import java.sql.SQLException;
30 34
import java.util.ArrayList;
31 35
import java.util.List;
36
import java.util.Map;
32 37
33 38
@Path("/sys")
34 39
public class SysService {
35 40
36
    private String fixRightCode = "aaa";
41
    private String fixRightCode = "0";
37 42
38 43
    @Autowrie
39 44
    private UserDao userDao;
@ -50,16 +55,15 @@ public class SysService {
50 55
    @Path("/login")
51 56
    @Post
52 57
    public SessionManager managerLogin(@JdbcConn Connection con, String account, String pw) throws SQLException, JfwBaseException {
53
        Manager user = userDao.managerLogin(con, account, StringUtil.md5(pw));
58
        ManagerInfo user = userDao.managerLogin(con, account, StringUtil.md5(pw));
54 59
        if (user != null) {
55 60
            if (!user.isActived()) {
56 61
                throw new JfwBaseException(-200001, "user is disabled");
57 62
58 63
            }
59
            ManagerInfo managerInfo = (ManagerInfo) user;
60 64
            List<String> rightList = userDao.right(con, user.getId());
61
            managerInfo.setRightCode(rightList.toArray(new String[0]));
62
            return makeSessionManager(managerInfo);
65
            user.setRightCode(rightList.toArray(new String[0]));
66
            return makeSessionManager(user);
63 67
        }
64 68
        return null;
65 69
    }
@ -86,14 +90,14 @@ public class SysService {
86 90
87 91
    @Post
88 92
    @Path("/manager/changepasswd")
89
    public int changeManagerPasswd(@JdbcConn(true) Connection con, @LoginUser SessionManager loginUser, String opw, String npw) throws SQLException {
90
        return userDao.changePasswd(con, loginUser.getId(), StringUtil.md5(opw), StringUtil.md5(npw));
93
    public int changeManagerPasswd(@JdbcConn(true) Connection con, @LoginUser SessionManager loginUser, String npw) throws SQLException {
94
        return userDao.changeManagerPasswd(con, loginUser.getId(),StringUtil.md5(npw));
91 95
    }
92 96
93 97
    @Put
94 98
    @Path("/manager")
95 99
    public void modifyManager(@JdbcConn(true) Connection con, @LoginUser SessionManager loginUser,
96
                              @RequestParam(excludeFields = {"id", "createTime", "modifyTime", "account", "passwd", "active"}) Manager user) throws SQLException {
100
                              @RequestParam(excludeFields = {"id", "createTime", "modifyTime", "passwd", "active"}) Manager user) throws SQLException {
97 101
        user.setModifier(loginUser.getId());
98 102
        userDao.update(con, user);
99 103
    }
@ -115,19 +119,18 @@ public class SysService {
115 119
    @Get
116 120
    @Path("/resetpw")
117 121
    public void managerResetPw(@JdbcConn(true) Connection con, String id) throws SQLException {
118
        userDao.resetPasswd(con, id, StringUtil.md5("123456"));
122
        userDao.managerResetPasswd(con, id, StringUtil.md5("123456"));
119 123
    }
120 124
121
    @LoginUser
122 125
    @Get
123 126
    @Path("/pq")
124
    public PageQueryResult<SessionManager> managerPageQuery(@JdbcConn Connection con, boolean active, int pageSize, int pageNo) throws SQLException {
125
        PageQueryResult<Manager> pageQueryResult = userDao.managerPageQuery(con, active, pageSize, pageNo);
126
        List<Manager> managers = pageQueryResult.getData();
127
    public PageQueryResult<SessionManager> managerPageQuery(@JdbcConn Connection con,@LoginUser SessionManager user, boolean active, int pageSize, int pageNo) throws SQLException {
128
        PageQueryResult<ManagerInfo> pageQueryResult = userDao.managerPageQuery(con,user.getId(), active, pageSize, pageNo);
129
        List<ManagerInfo> managers = pageQueryResult.getData();
127 130
        List<SessionManager> sessionManagers = new ArrayList<>();
128 131
        if (!managers.isEmpty()) {
129
            for (Manager manager : managers) {
130
                sessionManagers.add(makeSessionManager((ManagerInfo) manager));
132
            for (ManagerInfo manager : managers) {
133
                sessionManagers.add(makeSessionManager(manager));
131 134
            }
132 135
            PageQueryResult<SessionManager> ret = new PageQueryResult<>();
133 136
            ret.setPageNo(pageQueryResult.getPageNo());
@ -143,19 +146,19 @@ public class SysService {
143 146
    @Get
144 147
    @Path("/qo")
145 148
    public SessionManager managerQueryOne(@JdbcConn Connection con, String id) throws SQLException {
146
        Manager manager = userDao.managerQuery(con, id);
147
        ManagerInfo managerInfo = (ManagerInfo) manager;
148
        List<String> rightList = userDao.right(con, manager.getId());
149
        ManagerInfo managerInfo = userDao.managerQuery(con, id);
150
        List<String> rightList = userDao.right(con, managerInfo.getId());
149 151
        managerInfo.setRightCode(rightList.toArray(new String[0]));
150 152
        return makeSessionManager(managerInfo);
151 153
    }
152 154
153 155
    @Path("/new")
154 156
    @Post
155
    public String addUser(@JdbcConn(true) Connection con, @LoginUser AuthUser au, @RequestParam(excludeFields = {"id", "acitve", "createor"}) Manager user, String[] rightCode) throws SQLException {
157
    public String addUser(@JdbcConn(true) Connection con, @LoginUser SessionManager au, @RequestParam(excludeFields = {"id", "acitve", "createor"}) Manager user, String[] rightCode) throws SQLException {
156 158
        String id = StringUtil.buildUUID();
157 159
        user.setActived(true);
158 160
        user.setCreator(au.getId());
161
        user.setModifier(au.getId());
159 162
        user.setId(id);
160 163
        user.setInvalidOperator(null);
161 164
        user.setInvalidTime(null);
@ -175,7 +178,7 @@ public class SysService {
175 178
176 179
    @Path("/renew")
177 180
    @Put
178
    public void renewUser(@JdbcConn(true) Connection con, @LoginUser AuthUser au, @RequestBody ManagerInfo user) throws SQLException {
181
    public void renewUser(@JdbcConn(true) Connection con, @LoginUser SessionManager au, @RequestBody ManagerInfo user) throws SQLException {
179 182
        user.setModifier(au.getId());
180 183
        userDao.update(con, user);
181 184
        userDao.delete(con, user.getId(), this.fixRightCode);
@ -238,9 +241,74 @@ public class SysService {
238 241
        userDao.validUser(con, id);
239 242
    }
240 243
244
    @LoginUser
245
    @Path("/user/pq")
246
    @Get
247
    public PageQueryResult<SessionUser> pageQuery(@JdbcConn Connection con, @Nullable String key, int pageSize, int pageNo) throws SQLException {
248
        PageQueryResult<User> pageQueryResult = userDao.pageQuery(con, key == null ? null : "%" + key + "%", pageSize, pageNo);
249
        List<User> users = pageQueryResult.getData();
250
        List<SessionUser> sessionUsers = new ArrayList<>();
251
        if (!users.isEmpty()) {
252
            for (User user : users) {
253
                sessionUsers.add(makeSessionUser(user));
254
            }
255
            PageQueryResult<SessionUser> ret = new PageQueryResult<>();
256
            ret.setPageNo(pageQueryResult.getPageNo());
257
            ret.setPageSize(pageQueryResult.getPageSize());
258
            ret.setTotal(pageQueryResult.getTotal());
259
            ret.setData(sessionUsers);
260
            return ret;
261
        }
262
        return null;
263
    }
264
265
    @LoginUser
266
    @Path("/user/invalid/pq")
267
    @Get
268
    public PageQueryResult<InvalidUser> pageQueryInvalidUser(@JdbcConn Connection con, @Nullable String key, int pageSize, int pageNo) throws SQLException {
269
        return userDao.pageQueryInvalidUser(con, key == null ? null : "%" + key + "%", pageSize, pageNo);
270
    }
271
272
    @LoginUser
273
    @Path("/user/qo")
274
    @Get
275
    public SessionUser query(@JdbcConn Connection con, String id) throws SQLException {
276
        User user = userDao.query(con, id);
277
        return makeSessionUser(user);
278
    }
279
280
    @LoginUser
281
    @Path("/user/invalid/qo")
282
    @Get
283
    public InvalidUser queryInvalidUser(@JdbcConn Connection con, String id) throws SQLException {
284
        return userDao.queryInvalidUser(con, id);
285
    }
286
287
    @LoginUser
288
    @Path("/user/lastTime")
289
    @Get
290
    public List<Map<String, Object>> queryLastTime(@JdbcConn Connection con, final String[] ids) throws SQLException {
291
        final StringBuilder stringBuilder = new StringBuilder();
292
        stringBuilder.append("SELECT ID,LAST_LOGIN_TIME WHERE ID IN(");
293
        for (String id : ids) {
294
            stringBuilder.append("?,");
295
        }
296
        stringBuilder.setCharAt(stringBuilder.length() - 1, ')');
297
        return JdbcUtil.queryMaps(con, stringBuilder.toString(), new PreparedStatementConfig() {
298
            @Override
299
            public void config(PreparedStatement preparedStatement) throws SQLException {
300
                int i = 1;
301
                for (String id : ids) {
302
                    preparedStatement.setString(i++, id);
303
                }
304
            }
305
        });
306
    }
307
241 308
    private static SessionManager makeSessionManager(ManagerInfo manager) {
242 309
        SessionManager sessionManager = new SessionManager();
243 310
        sessionManager.setId(manager.getId());
311
        sessionManager.setName(manager.getName());
244 312
        sessionManager.setAccount(manager.getAccount());
245 313
        sessionManager.setPhone(manager.getPhone());
246 314
        sessionManager.setEmail(manager.getEmail());
@ -254,4 +322,24 @@ public class SysService {
254 322
        return sessionManager;
255 323
    }
256 324
325
    private static SessionUser makeSessionUser(User user) {
326
        SessionUser sessionUser = new SessionUser();
327
        sessionUser.setAccount(user.getAccount());
328
        sessionUser.setComp(user.getComp());
329
        sessionUser.setEmail(user.getEmail());
330
        sessionUser.setId(user.getId());
331
        sessionUser.setJob(user.getJob());
332
        sessionUser.setName(user.getName());
333
        sessionUser.setActive(user.isActive());
334
        sessionUser.setAddr(user.getAccount());
335
        sessionUser.setCreateTime(user.getCreateTime());
336
        sessionUser.setHead(user.getHead());
337
        sessionUser.setLinkPhone(user.getLinkPhone());
338
        sessionUser.setLoginPhone(user.getLoginPhone());
339
        sessionUser.setModifyTime(user.getModifyTime());
340
        sessionUser.setSex(user.getSex());
341
        return sessionUser;
342
    }
343
344
257 345
}

+ 1 - 1
src/main/resources/.gitignore

@ -1 +1 @@
1
/dev.properties
1
/dev1.properties

+ 353 - 0
src/main/resources/database.sql

@ -0,0 +1,353 @@
1
CREATE TABLE INVALID_USER (
2
        ID CHAR(32) NOT NULL,
3
        NAME TEXT,
4
        ACCOUNT TEXT NOT NULL,
5
        COMP TEXT,
6
        JOB TEXT,
7
        LINK_PHONE TEXT,
8
        EMAIL TEXT,
9
        SEX CHAR(1),
10
        LOGIN_PHONE TEXT NOT NULL,
11
        ADDR TEXT,
12
        HEAD TEXT,
13
        INVALID_TIME CHAR(14) NOT NULL,
14
        INVALID_OPERATOR TEXT NOT NULL,
15
        INVALID_REASON TEXT NOT NULL);
16
COMMENT ON TABLE INVALID_USER IS '拉黑用户表';
17
COMMENT ON COLUMN INVALID_USER.ID IS '用户ID';
18
COMMENT ON COLUMN INVALID_USER.NAME IS '真实姓名';
19
COMMENT ON COLUMN INVALID_USER.ACCOUNT IS '用户名';
20
COMMENT ON COLUMN INVALID_USER.COMP IS '用户所属单位';
21
COMMENT ON COLUMN INVALID_USER.JOB IS '用户职位';
22
COMMENT ON COLUMN INVALID_USER.LINK_PHONE IS '联系电话';
23
COMMENT ON COLUMN INVALID_USER.EMAIL IS '联系邮件';
24
COMMENT ON COLUMN INVALID_USER.SEX IS '性别';
25
COMMENT ON COLUMN INVALID_USER.LOGIN_PHONE IS '登录手机号';
26
COMMENT ON COLUMN INVALID_USER.ADDR IS '所在城市编码';
27
COMMENT ON COLUMN INVALID_USER.HEAD IS '头像';
28
COMMENT ON COLUMN INVALID_USER.INVALID_TIME IS '最后拉黑时间(YYYYMMDDHH24MISS)不可修改';
29
COMMENT ON COLUMN INVALID_USER.INVALID_OPERATOR IS '最后拉黑人';
30
COMMENT ON COLUMN INVALID_USER.INVALID_REASON IS '拉黑原因';
31
CREATE TABLE PRODUCT_KEY_WORD (
32
        ID CHAR(32) NOT NULL,
33
        KEYWORD TEXT,
34
        NUM INTEGER NOT NULL);
35
COMMENT ON TABLE PRODUCT_KEY_WORD IS '产品关键词';
36
COMMENT ON COLUMN PRODUCT_KEY_WORD.ID IS '产品ID';
37
COMMENT ON COLUMN PRODUCT_KEY_WORD.KEYWORD IS '关键词';
38
COMMENT ON COLUMN PRODUCT_KEY_WORD.NUM IS '序号';
39
create sequence product_share_id_seq increment by 1 minvalue 100000 no maxvalue start with 100000;
40
CREATE TABLE PRODUCT (
41
        ID CHAR(32) NOT NULL,
42
        SHARE_ID int8 DEFAULT nextval('product_share_id_seq'::regclass) NOT NULL,
43
        COMPANY_ID CHAR(32) NOT NULL,
44
        IMG TEXT,
45
        NAME TEXT,
46
        CNT TEXT,
47
        DESCP TEXT,
48
        SPEC TEXT,
49
        PRODUCING_AREA TEXT,
50
        PRICE TEXT,
51
        PARAMETER TEXT,
52
        ACTIVE CHAR(1) NOT NULL,
53
        CREATOR CHAR(32) NOT NULL,
54
        MODIFIER CHAR(32) NOT NULL,
55
        CREATE_TIME CHAR(14) NOT NULL,
56
        MODIFY_TIME CHAR(14) NOT NULL);
57
ALTER TABLE PRODUCT ADD PRIMARY KEY (ID);
58
COMMENT ON TABLE PRODUCT IS '产品表';
59
COMMENT ON COLUMN PRODUCT.ID IS '产品ID';
60
COMMENT ON COLUMN PRODUCT.SHARE_ID IS '分享ID';
61
COMMENT ON COLUMN PRODUCT.COMPANY_ID IS '所属企业ID';
62
COMMENT ON COLUMN PRODUCT.IMG IS '产品图片';
63
COMMENT ON COLUMN PRODUCT.NAME IS '产品名称';
64
COMMENT ON COLUMN PRODUCT.CNT IS '产品简介';
65
COMMENT ON COLUMN PRODUCT.DESCP IS '产品描述';
66
COMMENT ON COLUMN PRODUCT.SPEC IS '厂商型号';
67
COMMENT ON COLUMN PRODUCT.PRODUCING_AREA IS '产地';
68
COMMENT ON COLUMN PRODUCT.PRICE IS '价格';
69
COMMENT ON COLUMN PRODUCT.PARAMETER IS '性能参数';
70
COMMENT ON COLUMN PRODUCT.ACTIVE IS '有效标识';
71
COMMENT ON COLUMN PRODUCT.CREATOR IS '创建人ID';
72
COMMENT ON COLUMN PRODUCT.MODIFIER IS '最后修改人';
73
COMMENT ON COLUMN PRODUCT.CREATE_TIME IS '创建时间(YYYYMMDDHH24MISS)不可修改';
74
COMMENT ON COLUMN PRODUCT.MODIFY_TIME IS '最后修改时间(YYYYMMDDHH24MISS),初始值:20000101010101';
75
create sequence organization_share_id_seq increment by 1 minvalue 100000 no maxvalue start with 100000;
76
CREATE TABLE ORGANIZATION (
77
        ID TEXT NOT NULL,
78
        SHARE_ID int8 DEFAULT nextval('organization_share_id_seq'::regclass) NOT NULL,
79
        LEVEL INTEGER,
80
        ASS_TIME TEXT NOT NULL);
81
ALTER TABLE ORGANIZATION ADD PRIMARY KEY (ID);
82
COMMENT ON TABLE ORGANIZATION IS '合作机构表';
83
COMMENT ON COLUMN ORGANIZATION.ID IS '合作机构ID';
84
COMMENT ON COLUMN ORGANIZATION.SHARE_ID IS '合作机构共享ID';
85
COMMENT ON COLUMN ORGANIZATION.LEVEL IS '排序字段';
86
COMMENT ON COLUMN ORGANIZATION.ASS_TIME IS '入驻时间';
87
CREATE TABLE USER_LOGIN_LOG (
88
        ID TEXT NOT NULL,
89
        LAST_LOGIN_TIME TEXT NOT NULL);
90
ALTER TABLE USER_LOGIN_LOG ADD PRIMARY KEY (ID);
91
COMMENT ON TABLE USER_LOGIN_LOG IS '登录日志表';
92
COMMENT ON COLUMN USER_LOGIN_LOG.ID IS '用户ID';
93
COMMENT ON COLUMN USER_LOGIN_LOG.LAST_LOGIN_TIME IS '最后登录时间';
94
CREATE TABLE MANAGER (
95
        ID CHAR(32) NOT NULL,
96
        ACCOUNT TEXT NOT NULL,
97
        PASSWD TEXT NOT NULL,
98
        NAME TEXT,
99
        PHONE TEXT,
100
        EMAIL TEXT,
101
        JOB TEXT,
102
        DEP TEXT,
103
        COMP TEXT,
104
        ACTIVED CHAR(1) NOT NULL,
105
        INVALID_TIME TEXT,
106
        INVALID_OPERATOR TEXT,
107
        CREATOR CHAR(32) NOT NULL,
108
        MODIFIER CHAR(32) NOT NULL,
109
        CREATE_TIME CHAR(14) NOT NULL,
110
        MODIFY_TIME CHAR(14) NOT NULL);
111
ALTER TABLE MANAGER ADD PRIMARY KEY (ID);
112
COMMENT ON TABLE MANAGER IS '后台管理用户表';
113
COMMENT ON COLUMN MANAGER.ID IS '后台用户ID';
114
COMMENT ON COLUMN MANAGER.ACCOUNT IS '后台用户帐号';
115
COMMENT ON COLUMN MANAGER.PASSWD IS '后台用户密码(md5)';
116
COMMENT ON COLUMN MANAGER.NAME IS '后台用户姓名';
117
COMMENT ON COLUMN MANAGER.PHONE IS '后台用户电话';
118
COMMENT ON COLUMN MANAGER.EMAIL IS '后台用户邮箱';
119
COMMENT ON COLUMN MANAGER.JOB IS '后台用户职位';
120
COMMENT ON COLUMN MANAGER.DEP IS '后台用户部门';
121
COMMENT ON COLUMN MANAGER.COMP IS '后台用户所在机构';
122
COMMENT ON COLUMN MANAGER.ACTIVED IS '后台用户帐号状态';
123
COMMENT ON COLUMN MANAGER.INVALID_TIME IS '后台用户最后停用时间';
124
COMMENT ON COLUMN MANAGER.INVALID_OPERATOR IS '后台用户最后停用人';
125
COMMENT ON COLUMN MANAGER.CREATOR IS '创建人ID';
126
COMMENT ON COLUMN MANAGER.MODIFIER IS '最后修改人ID';
127
COMMENT ON COLUMN MANAGER.CREATE_TIME IS '创建时间(YYYYMMDDHH24MISS)不可修改';
128
COMMENT ON COLUMN MANAGER.MODIFY_TIME IS '最后修改时间(YYYYMMDDHH24MISS),初始值:20000101010101';
129
CREATE TABLE PLATFORM (
130
        ID CHAR(32) NOT NULL,
131
        NAME TEXT,
132
        LOGO TEXT,
133
        DESCP TEXT,
134
        URL TEXT,
135
        ADDR TEXT,
136
        LOCATION TEXT,
137
        ZIP_CODE TEXT,
138
        SERVICE_PHONE TEXT,
139
        SERVICE_EMAIL TEXT,
140
        OPERATE_TIME TEXT,
141
        MANAGE_ORG TEXT,
142
        LINKMAN TEXT,
143
        DEPARTMENT TEXT,
144
        JOB TEXT,
145
        COMP TEXT,
146
        LINKPHONE TEXT,
147
        LINKEMAIL TEXT,
148
        CREATOR CHAR(32) NOT NULL,
149
        MODIFIER CHAR(32) NOT NULL,
150
        CREATE_TIME CHAR(14) NOT NULL,
151
        MODIFY_TIME CHAR(14) NOT NULL);
152
ALTER TABLE PLATFORM ADD PRIMARY KEY (ID);
153
COMMENT ON TABLE PLATFORM IS '平台信息表';
154
COMMENT ON COLUMN PLATFORM.ID IS '平台ID';
155
COMMENT ON COLUMN PLATFORM.NAME IS '平台名称';
156
COMMENT ON COLUMN PLATFORM.LOGO IS '平台logo';
157
COMMENT ON COLUMN PLATFORM.DESCP IS '平台简介';
158
COMMENT ON COLUMN PLATFORM.URL IS '平台网址';
159
COMMENT ON COLUMN PLATFORM.ADDR IS '所在城市编码';
160
COMMENT ON COLUMN PLATFORM.LOCATION IS '平台地址';
161
COMMENT ON COLUMN PLATFORM.ZIP_CODE IS '平台邮编';
162
COMMENT ON COLUMN PLATFORM.SERVICE_PHONE IS '客服电话';
163
COMMENT ON COLUMN PLATFORM.SERVICE_EMAIL IS '客服邮箱';
164
COMMENT ON COLUMN PLATFORM.OPERATE_TIME IS '工作时间';
165
COMMENT ON COLUMN PLATFORM.MANAGE_ORG IS '管理机构';
166
COMMENT ON COLUMN PLATFORM.LINKMAN IS '联系人';
167
COMMENT ON COLUMN PLATFORM.DEPARTMENT IS '联系人所在部门';
168
COMMENT ON COLUMN PLATFORM.JOB IS '联系人职位';
169
COMMENT ON COLUMN PLATFORM.COMP IS '联系人所属单位';
170
COMMENT ON COLUMN PLATFORM.LINKPHONE IS '联系人电话';
171
COMMENT ON COLUMN PLATFORM.LINKEMAIL IS '联系人邮箱';
172
COMMENT ON COLUMN PLATFORM.CREATOR IS '创建人ID';
173
COMMENT ON COLUMN PLATFORM.MODIFIER IS '最后修改人ID';
174
COMMENT ON COLUMN PLATFORM.CREATE_TIME IS '创建时间(YYYYMMDDHH24MISS)不可修改';
175
COMMENT ON COLUMN PLATFORM.MODIFY_TIME IS '最后修改时间(YYYYMMDDHH24MISS),初始值:20000101010101';
176
create sequence professor_share_id_seq increment by 1 minvalue 100000 no maxvalue start with 100000;
177
CREATE TABLE PROFESSOR (
178
        ID TEXT NOT NULL,
179
        SHARE_ID int8 DEFAULT nextval('professor_share_id_seq'::regclass) NOT NULL,
180
        LEVEL INTEGER,
181
        ASS_TIME TEXT NOT NULL);
182
ALTER TABLE PROFESSOR ADD PRIMARY KEY (ID);
183
COMMENT ON TABLE PROFESSOR IS '特约专家表';
184
COMMENT ON COLUMN PROFESSOR.ID IS '特约专家ID';
185
COMMENT ON COLUMN PROFESSOR.SHARE_ID IS '特约专家共享ID';
186
COMMENT ON COLUMN PROFESSOR.LEVEL IS '排序字段';
187
COMMENT ON COLUMN PROFESSOR.ASS_TIME IS '入驻时间';
188
CREATE TABLE SYS_RIGHT (
189
        UID CHAR(32) NOT NULL,
190
        RIGHT_CODE TEXT NOT NULL);
191
COMMENT ON TABLE SYS_RIGHT IS '用户权限表';
192
COMMENT ON COLUMN SYS_RIGHT.UID IS '后台用户ID';
193
COMMENT ON COLUMN SYS_RIGHT.RIGHT_CODE IS '权限码';
194
CREATE TABLE ARTICLE_PRO (
195
        ARTICLE_ID CHAR(32) NOT NULL,
196
        PROFESSOR_ID CHAR(32) NOT NULL,
197
        CREATE_TIME CHAR(14) NOT NULL);
198
COMMENT ON TABLE ARTICLE_PRO IS '内容关联专家';
199
COMMENT ON COLUMN ARTICLE_PRO.ARTICLE_ID IS '内容ID';
200
COMMENT ON COLUMN ARTICLE_PRO.PROFESSOR_ID IS '专家ID';
201
COMMENT ON COLUMN ARTICLE_PRO.CREATE_TIME IS '创建时间(YYYYMMDDHH24MISS)不可修改';
202
create sequence article_share_id_seq increment by 1 minvalue 100000 no maxvalue start with 100000;
203
CREATE TABLE ARTICLE (
204
        ID CHAR(32) NOT NULL,
205
        SHARE_ID int8 DEFAULT nextval('article_share_id_seq'::regclass) NOT NULL,
206
        CATALOG TEXT,
207
        TITLE TEXT NOT NULL,
208
        SOURCE TEXT,
209
        IMG_URL TEXT,
210
        CNT TEXT,
211
        PUBLISHED CHAR(1) NOT NULL,
212
        ACTIVED CHAR(1) NOT NULL,
213
        PROFESSOR TEXT,
214
        ORG TEXT,
215
        COMP TEXT,
216
        CREATOR CHAR(32) NOT NULL,
217
        MODIFIER CHAR(32) NOT NULL,
218
        CREATE_TIME CHAR(14) NOT NULL,
219
        MODIFY_TIME CHAR(14) NOT NULL);
220
ALTER TABLE ARTICLE ADD PRIMARY KEY (ID);
221
COMMENT ON TABLE ARTICLE IS '内容表';
222
COMMENT ON COLUMN ARTICLE.ID IS '内容ID';
223
COMMENT ON COLUMN ARTICLE.SHARE_ID IS '内容分享ID';
224
COMMENT ON COLUMN ARTICLE.CATALOG IS '内容栏目';
225
COMMENT ON COLUMN ARTICLE.TITLE IS '内容标题';
226
COMMENT ON COLUMN ARTICLE.SOURCE IS '内容来源';
227
COMMENT ON COLUMN ARTICLE.IMG_URL IS '封面图片';
228
COMMENT ON COLUMN ARTICLE.CNT IS '内容';
229
COMMENT ON COLUMN ARTICLE.PUBLISHED IS '内容状态';
230
COMMENT ON COLUMN ARTICLE.ACTIVED IS '有效标志';
231
COMMENT ON COLUMN ARTICLE.PROFESSOR IS '关联专家';
232
COMMENT ON COLUMN ARTICLE.ORG IS '关联机构';
233
COMMENT ON COLUMN ARTICLE.COMP IS '关联企业';
234
COMMENT ON COLUMN ARTICLE.CREATOR IS '创建人ID';
235
COMMENT ON COLUMN ARTICLE.MODIFIER IS '最后修改人ID';
236
COMMENT ON COLUMN ARTICLE.CREATE_TIME IS '创建时间(YYYYMMDDHH24MISS)不可修改';
237
COMMENT ON COLUMN ARTICLE.MODIFY_TIME IS '最后修改时间(YYYYMMDDHH24MISS),初始值:20000101010101';
238
CREATE TABLE COMP_KEY_WORD (
239
        ID TEXT NOT NULL,
240
        TYPE INTEGER NOT NULL,
241
        VALUE TEXT NOT NULL,
242
        NUM INTEGER NOT NULL);
243
COMMENT ON TABLE COMP_KEY_WORD IS '企业关键词';
244
COMMENT ON COLUMN COMP_KEY_WORD.ID IS '企业ID';
245
COMMENT ON COLUMN COMP_KEY_WORD.TYPE IS '关键词类型(所属行业:1,专注领域:2,企业资质:3,供应商领域:4,客户领域:5)';
246
COMMENT ON COLUMN COMP_KEY_WORD.VALUE IS '关键词';
247
COMMENT ON COLUMN COMP_KEY_WORD.NUM IS '序号';
248
CREATE TABLE COMP_INVITE (
249
        ID CHAR(32) NOT NULL,
250
        EMAIL TEXT NOT NULL,
251
        INVITE_CODE TEXT NOT NULL,
252
        LAST_TIME CHAR(14) NOT NULL,
253
        LAST_INVITER CHAR(32) NOT NULL,
254
        ACTIVE CHAR(1) NOT NULL);
255
COMMENT ON TABLE COMP_INVITE IS '企业邀请表';
256
COMMENT ON COLUMN COMP_INVITE.ID IS '企业ID';
257
COMMENT ON COLUMN COMP_INVITE.EMAIL IS '联系邮箱';
258
COMMENT ON COLUMN COMP_INVITE.INVITE_CODE IS '邀请码';
259
COMMENT ON COLUMN COMP_INVITE.LAST_TIME IS '最后邀请时间';
260
COMMENT ON COLUMN COMP_INVITE.LAST_INVITER IS '最后邀请人';
261
COMMENT ON COLUMN COMP_INVITE.ACTIVE IS '有效标识';
262
create sequence company_share_id_seq increment by 1 minvalue 100000 no maxvalue start with 100000;
263
CREATE TABLE COMPANY (
264
        ID CHAR(32) NOT NULL,
265
        SHARE_ID int8 DEFAULT nextval('company_share_id_seq'::regclass) NOT NULL,
266
        NAME TEXT NOT NULL,
267
        LOGO TEXT,
268
        TYPE CHAR(1),
269
        SIZE TEXT,
270
        FOUND_YEAR TEXT,
271
        DESCP TEXT,
272
        URL TEXT,
273
        LOCATION TEXT,
274
        ADDR TEXT,
275
        ZIP_CODE TEXT,
276
        SERVICE_PHONE TEXT,
277
        SERVICE_EMAIL TEXT,
278
        OPERATE_TIME TEXT,
279
        LINKMAN TEXT,
280
        JOB TEXT,
281
        DEPARTMENT TEXT,
282
        LINKPHONE TEXT,
283
        LINKEMAIL TEXT,
284
        ACTIVE CHAR(1) NOT NULL,
285
        ACTIVE_TIME CHAR(14),
286
        CREATOR CHAR(32) NOT NULL,
287
        MODIFIER CHAR(32) NOT NULL,
288
        CREATE_TIME CHAR(14) NOT NULL,
289
        MODIFY_TIME CHAR(14) NOT NULL);
290
ALTER TABLE COMPANY ADD PRIMARY KEY (ID);
291
COMMENT ON TABLE COMPANY IS '企业信息';
292
COMMENT ON COLUMN COMPANY.ID IS '企业ID';
293
COMMENT ON COLUMN COMPANY.SHARE_ID IS '共享ID';
294
COMMENT ON COLUMN COMPANY.NAME IS '企业名称';
295
COMMENT ON COLUMN COMPANY.LOGO IS '企业logo';
296
COMMENT ON COLUMN COMPANY.TYPE IS '企业类型';
297
COMMENT ON COLUMN COMPANY.SIZE IS '企业规模';
298
COMMENT ON COLUMN COMPANY.FOUND_YEAR IS '创立年份';
299
COMMENT ON COLUMN COMPANY.DESCP IS '企业简介';
300
COMMENT ON COLUMN COMPANY.URL IS '官方网址';
301
COMMENT ON COLUMN COMPANY.LOCATION IS '所在地';
302
COMMENT ON COLUMN COMPANY.ADDR IS '企业地址';
303
COMMENT ON COLUMN COMPANY.ZIP_CODE IS '企业邮编';
304
COMMENT ON COLUMN COMPANY.SERVICE_PHONE IS '客服电话';
305
COMMENT ON COLUMN COMPANY.SERVICE_EMAIL IS '客服邮箱';
306
COMMENT ON COLUMN COMPANY.OPERATE_TIME IS '工作时间';
307
COMMENT ON COLUMN COMPANY.LINKMAN IS '联系人';
308
COMMENT ON COLUMN COMPANY.JOB IS '联系人职位';
309
COMMENT ON COLUMN COMPANY.DEPARTMENT IS '所在部门';
310
COMMENT ON COLUMN COMPANY.LINKPHONE IS '联系人电话';
311
COMMENT ON COLUMN COMPANY.LINKEMAIL IS '联系人邮箱';
312
COMMENT ON COLUMN COMPANY.ACTIVE IS '激活状态';
313
COMMENT ON COLUMN COMPANY.ACTIVE_TIME IS '激活时间';
314
COMMENT ON COLUMN COMPANY.CREATOR IS '创建人ID';
315
COMMENT ON COLUMN COMPANY.MODIFIER IS '最后修改人ID';
316
COMMENT ON COLUMN COMPANY.CREATE_TIME IS '创建时间(YYYYMMDDHH24MISS)不可修改';
317
COMMENT ON COLUMN COMPANY.MODIFY_TIME IS '最后修改时间(YYYYMMDDHH24MISS),初始值:20000101010101';
318
CREATE TABLE INVALID_ARTICLE (
319
        ID TEXT NOT NULL,
320
        TITLE TEXT NOT NULL,
321
        CATALOG TEXT,
322
        CREATOR TEXT NOT NULL,
323
        CREATE_TIME TEXT NOT NULL,
324
        INVALID_TIME TEXT NOT NULL,
325
        INVALID_OPERATOR TEXT NOT NULL);
326
ALTER TABLE INVALID_ARTICLE ADD PRIMARY KEY (ID);
327
COMMENT ON TABLE INVALID_ARTICLE IS '无效内容表';
328
COMMENT ON COLUMN INVALID_ARTICLE.ID IS '内容ID';
329
COMMENT ON COLUMN INVALID_ARTICLE.TITLE IS '内容标题';
330
COMMENT ON COLUMN INVALID_ARTICLE.CATALOG IS '内容栏目';
331
COMMENT ON COLUMN INVALID_ARTICLE.CREATOR IS '内容创建人';
332
COMMENT ON COLUMN INVALID_ARTICLE.CREATE_TIME IS '内容创建时间';
333
COMMENT ON COLUMN INVALID_ARTICLE.INVALID_TIME IS '最后删除时间';
334
COMMENT ON COLUMN INVALID_ARTICLE.INVALID_OPERATOR IS '最后删除人';
335
CREATE TABLE ARTICLE_COMP (
336
        ARTICLE_ID CHAR(32) NOT NULL,
337
        COMP_ID CHAR(32) NOT NULL,
338
        CREATE_TIME CHAR(14) NOT NULL);
339
COMMENT ON TABLE ARTICLE_COMP IS '内容关联企业';
340
COMMENT ON COLUMN ARTICLE_COMP.ARTICLE_ID IS '内容ID';
341
COMMENT ON COLUMN ARTICLE_COMP.COMP_ID IS '企业ID';
342
COMMENT ON COLUMN ARTICLE_COMP.CREATE_TIME IS '创建时间(YYYYMMDDHH24MISS)不可修改';
343
CREATE TABLE ARTICLE_ORG (
344
        ARTICLE_ID CHAR(32) NOT NULL,
345
        ORG_ID CHAR(32) NOT NULL,
346
        CREATE_TIME CHAR(14) NOT NULL);
347
COMMENT ON TABLE ARTICLE_ORG IS '内容关联机构';
348
COMMENT ON COLUMN ARTICLE_ORG.ARTICLE_ID IS '内容ID';
349
COMMENT ON COLUMN ARTICLE_ORG.ORG_ID IS '机构ID';
350
COMMENT ON COLUMN ARTICLE_ORG.CREATE_TIME IS '创建时间(YYYYMMDDHH24MISS)不可修改';
351
352
INSERT INTO "public"."manager" ("id", "account", "passwd", "name", "phone", "email", "job", "dep", "comp", "actived", "invalid_time", "invalid_operator","create_time","creator","modify_time","modifier") VALUES ('4733F3525B4E40719242AB154932CAA5', '18888888888', 'E10ADC3949BA59ABBE56E057F20F883E', 'admin', '18888888888', 'admin@ekexiu.com', '11', '11', '11', '1','','', '20180718091626', '4733F3525B4E40719242AB154932CAA5','20180718091626', '4733F3525B4E40719242AB154932CAA5');
353