package com.java110.utils.constant;
|
|
/**
|
* 业主报修常量类
|
* Created by wuxw on 2017/5/20.
|
*/
|
public class ServiceCodeOwnerRepairConstant {
|
|
/**
|
* 添加 业主报修
|
*/
|
public static final String ADD_OWNERREPAIR = "ownerRepair.saveOwnerRepair";
|
|
|
/**
|
* 修改 业主报修
|
*/
|
public static final String UPDATE_OWNERREPAIR = "ownerRepair.updateOwnerRepair";
|
/**
|
* 删除 业主报修
|
*/
|
public static final String DELETE_OWNERREPAIR = "ownerRepair.deleteOwnerRepair";
|
|
|
/**
|
* 查询 业主报修
|
*/
|
public static final String LIST_OWNERREPAIRS = "ownerRepair.listOwnerRepairs";
|
|
|
}
|