zhoushihao
2024-05-09 9e97ded305585c0bdc22aef3468dd031567c38a3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.mes.common.config;
 
/**
 * @Author : zhoush
 * @Date: 2024/4/24 10:33
 * @Description:
 */
public class Const {
    //默认密码
    public static final String DEFULT_PASSWORD = "123456";
    //默认角色
    public static final Long DEFULT_ROLE = 1L;
 
    //A09出片目标位置
    public static final Integer A09_OUT_TARGET_POSITION = 2001;
    //A09出片目标位置
    public static final Integer A10_OUT_TARGET_POSITION = 2002;
}