java110
2020-08-15 dfef90df81970d0bd04977bbbd71a25dbd5deb7f
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 ServiceCodeMachineRecordConstant {
 
    /**
     * 添加 开门记录
     */
    public static final String ADD_MACHINERECORD = "machineRecord.saveMachineRecord";
 
 
    /**
     * 修改 开门记录
     */
    public static final String UPDATE_MACHINERECORD = "machineRecord.updateMachineRecord";
    /**
     * 删除 开门记录
     */
    public static final String DELETE_MACHINERECORD = "machineRecord.deleteMachineRecord";
 
 
    /**
     * 查询 开门记录
     */
    public static final String LIST_MACHINERECORDS = "machineRecord.listMachineRecords";
 
 
}