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";
|
|
|
}
|