id修改和计数
This commit is contained in:
@@ -13,4 +13,8 @@ public class ProjectConstants {
|
||||
public static final int RED_LIGHTER = 1; //红色灯状态(结果异常)
|
||||
public static final int YELLOW_LIGHTER = 2;//黄色灯状态(结果不是特别理想)
|
||||
public static final int GREEN_LIGHTER = 3;//结果非常好
|
||||
|
||||
// 任务管理→我执行的 筛选今明任务
|
||||
public static final String TODAY_TMR_TASKS = "todayTmrTasks";
|
||||
|
||||
}
|
||||
|
||||
@@ -9,7 +9,7 @@ import lombok.EqualsAndHashCode;
|
||||
public class SysGroupMember extends BaseEntity {
|
||||
|
||||
private String groupName;
|
||||
private long groupId;
|
||||
private Long groupId;
|
||||
private String userId;
|
||||
private String userName;
|
||||
}
|
||||
|
||||
@@ -17,6 +17,7 @@ public class Tools {
|
||||
private static final String ALGORITHM = "AES";
|
||||
private static final int KEY_SIZE = 128;
|
||||
private static final int CACHE_SIZE = 1024;
|
||||
public static final String DATE_YYYY_MM_DD = "yyyy-MM-dd";
|
||||
|
||||
public static byte[] intToBytes(int value) {
|
||||
byte[] src = new byte[4];
|
||||
|
||||
Reference in New Issue
Block a user