5 changed files with 117 additions and 14 deletions
@ -0,0 +1,54 @@
|
||||
package com.biutag.supervision.pojo.param.complaintCollectionCheckFile; |
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField; |
||||
import io.swagger.v3.oas.annotations.media.Schema; |
||||
import lombok.Getter; |
||||
import lombok.Setter; |
||||
|
||||
import java.time.LocalDateTime; |
||||
import java.util.Set; |
||||
|
||||
/** |
||||
* @ClassName ComplaintCollectionFileQueryParam |
||||
* @Description 涉访涉诉核查附件表查询实体 |
||||
* @Author shihao |
||||
* @Date 2025/12/31 15:19 |
||||
*/ |
||||
|
||||
@Getter |
||||
@Setter |
||||
@Schema(description = "涉访涉诉核查附件表查询实体") |
||||
public class ComplaintCollectionCheckFileQueryParam { |
||||
|
||||
@Schema(description = "id") |
||||
private Long id; |
||||
|
||||
@Schema(description = "ids") |
||||
private Set<Long> ids; |
||||
|
||||
@Schema(description = "关联complaint_collection主键ID") |
||||
private String complaintId; |
||||
|
||||
@Schema(description = "complaintIds") |
||||
private Set<String> complaintIds; |
||||
|
||||
@Schema(description = "文件名称") |
||||
@TableField("fileName") |
||||
private String fileName; |
||||
|
||||
|
||||
@Schema(description = "文件路径") |
||||
@TableField("filePath") |
||||
private String filePath; |
||||
|
||||
@Schema(description = "创建人(新表字段)") |
||||
@TableField("create_by") |
||||
private String createBy; |
||||
|
||||
@Schema(description = "创建时间(新表字段)") |
||||
@TableField("create_time") |
||||
private LocalDateTime createTime; |
||||
|
||||
|
||||
|
||||
} |
||||
Loading…
Reference in new issue