用户管理,部门管理,角色管理

This commit is contained in:
马三炮 2025-09-10 11:32:30 +08:00
parent f619c4cdc5
commit df7a4a7e32
1 changed files with 3 additions and 2 deletions

View File

@ -2,6 +2,7 @@ package com.bonus.system.domain;
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
@ -30,13 +31,13 @@ public class KyDataClassify {
/**
* 创建时间
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date createTime;
/**
* 修改时间
*/
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date updateTime;
/**