java110
2020-09-04 0696b5360d5d3c95d62166531ba28ae3daabc35c
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
package com.java110.utils.constant;
 
/**
 * 业主属性常量类
 * Created by wuxw on 2017/5/20.
 */
public class ServiceCodeOwnerAttrConstant {
 
    /**
     * 添加 业主属性
     */
    public static final String ADD_OWNERATTR = "owner.saveOwnerAttr";
 
 
    /**
     * 修改 业主属性
     */
    public static final String UPDATE_OWNERATTR = "owner.updateOwnerAttr";
    /**
     * 删除 业主属性
     */
    public static final String DELETE_OWNERATTR = "owner.deleteOwnerAttr";
 
 
    /**
     * 查询 业主属性
     */
    public static final String LIST_OWNERATTRS = "owner.listOwnerAttrs";
 
 
}