wuxw
2022-07-16 206ff918c9d25306d2b516a7f8053a5acb3073ce
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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";
 
    /**
     * 查询 员工报修
     */
    public static final String LIST_STAFF_REPAIRS = "ownerRepair.listStaffRepairs";
 
    /**
     * 查询 员工已办报修
     */
    public static final String LIST_STAFF_FINISH_REPAIRS = "ownerRepair.listStaffFinishRepairs";
 
 
    /**
     * 查询 报修处理员工
     */
    public static final String LIST_REPAIR_STAFFS = "ownerRepair.listRepairStaffs";
 
 
}