23 lines
418 B
Java
23 lines
418 B
Java
|
|
package com.gunshi.project.hsz.entity;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @author xusan
|
||
|
|
* @date 2023/4/27 9:41
|
||
|
|
*/
|
||
|
|
public class MyConstant {
|
||
|
|
|
||
|
|
public static final String
|
||
|
|
|
||
|
|
// 删除
|
||
|
|
DEL = "0",
|
||
|
|
|
||
|
|
// 未删除
|
||
|
|
REC = "1";
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 数据-数据服务运维员 角色编码
|
||
|
|
*/
|
||
|
|
public static final String ROLE_PUSH = "data_zh_om";
|
||
|
|
public static final String REDIS_KEY = "hsz:";
|
||
|
|
}
|