wuxw
2022-11-16 39e3cd4fb4800dba43b3e09a79d0b6b424c5afa4
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 ServiceCodeOwnerCarAttrConstant {
 
    /**
     * 添加 业主车辆属性
     */
    public static final String ADD_OWNERCARATTR = "ownerCarAttr.saveOwnerCarAttr";
 
 
    /**
     * 修改 业主车辆属性
     */
    public static final String UPDATE_OWNERCARATTR = "ownerCarAttr.updateOwnerCarAttr";
    /**
     * 删除 业主车辆属性
     */
    public static final String DELETE_OWNERCARATTR = "ownerCarAttr.deleteOwnerCarAttr";
 
 
    /**
     * 查询 业主车辆属性
     */
    public static final String LIST_OWNERCARATTRS = "ownerCarAttr.listOwnerCarAttrs";
 
 
}