chengf
2026-01-27 b6184e2ddf3db37a94f7efb3b619bbc64642a292
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 ServiceCodeFloorAttrConstant {
 
    /**
     * 添加 考勤班组属性
     */
    public static final String ADD_FLOORATTR = "floor.saveFloorAttr";
 
 
    /**
     * 修改 考勤班组属性
     */
    public static final String UPDATE_FLOORATTR = "floor.updateFloorAttr";
    /**
     * 删除 考勤班组属性
     */
    public static final String DELETE_FLOORATTR = "floor.deleteFloorAttr";
 
 
    /**
     * 查询 考勤班组属性
     */
    public static final String LIST_FLOORATTRS = "floor.listFloorAttrs";
 
 
}