mirror of
https://github.com/CodePhiliaX/Chat2DB.git
synced 2025-07-30 03:03:13 +08:00
Team Create Complete Fields
This commit is contained in:
@ -2,6 +2,7 @@ package ai.chat2db.server.domain.api.model;
|
||||
|
||||
import java.io.Serial;
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
import ai.chat2db.server.tools.base.constant.EasyToolsConstant;
|
||||
import jakarta.validation.constraints.NotNull;
|
||||
@ -50,16 +51,24 @@ public class Team implements Serializable {
|
||||
@NotNull
|
||||
private String status;
|
||||
|
||||
/**
|
||||
* 角色编码
|
||||
*/
|
||||
@NotNull
|
||||
private String roleCode;
|
||||
|
||||
|
||||
/**
|
||||
* 团队描述
|
||||
*/
|
||||
private String description;
|
||||
|
||||
/**
|
||||
* 修改时间
|
||||
*/
|
||||
private Date gmtModified;
|
||||
|
||||
/**
|
||||
* 修改人用户id
|
||||
*/
|
||||
private Long modifiedUserId;
|
||||
|
||||
/**
|
||||
* 修改人用户
|
||||
*/
|
||||
private User modifiedUser;
|
||||
|
||||
}
|
||||
|
@ -16,8 +16,8 @@ import lombok.experimental.SuperBuilder;
|
||||
@AllArgsConstructor
|
||||
public class TeamSelector {
|
||||
/**
|
||||
* empty
|
||||
* 修改人用户
|
||||
*/
|
||||
private Boolean empty;
|
||||
private Boolean modifiedUser;
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user