java110
2023-06-25 f703eba54abaf2721d37badd2b8d4c2daabbca9d
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";
 
 
}