1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
| package com.java110.common.constant;
|
| /**
| * @author wux
| * @create 2019-02-05 下午11:28
| * @desc 业务类型
| *
| * 用户为1001 开头
| * 商户为2001 开头
| * 商品为3001 开头
| * 评论为4001 开头
| * 小区为5001 开头
| * 物业为6001 开头
| * 代理商为7001 开头
| * 第八位 3 代表保存 4代表修改 5 代表删除
| * 第八位之后 为相应业务序列
| **/
| public class OwnerTypeConstant {
|
| /**
| * 业主
| */
| public static final String OWNER = "1001";
|
| /**
| * 成员
| */
| public static final String MEMBER = "1002";
|
|
|
| }
|
|