You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.1 KiB
42 lines
1.1 KiB
package com.example.demo.domain.DTO;
|
|
|
|
import jakarta.validation.constraints.NotNull;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
/**
|
|
* @program: GOLD
|
|
* @ClassName GoldDTO
|
|
* @description:
|
|
* @author: huangqizhen
|
|
* @create: 2025−06-30 23:40
|
|
* @Version 1.0
|
|
**/
|
|
@Data
|
|
@NoArgsConstructor
|
|
public class GoldUserDTO {
|
|
private String token;
|
|
private String url = "";
|
|
private String fileName = "";
|
|
private Integer sort = 0;
|
|
private String field = "";
|
|
private Integer account;
|
|
private Integer type = 1; //类型
|
|
private Integer state = 0; //状态
|
|
private String text = ""; //关键词搜索
|
|
private Integer dataNum = 0;
|
|
private String deptid = "";
|
|
|
|
@NotNull(message = "page不能为空")
|
|
private Integer page = 1;
|
|
@NotNull(message = "pageSize不能为空")
|
|
private Integer pageSize = 20;
|
|
|
|
@Override
|
|
public String toString() {
|
|
return String.format(
|
|
"AiEmotionExport(account=%d, type=%d, state=%d, dataNum=%d)",
|
|
account, type, state, dataNum
|
|
);
|
|
}
|
|
}
|