You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
720 B
Java
33 lines
720 B
Java
package com.example.duplicate.controller.vo;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import lombok.Data;
|
|
|
|
/**
|
|
* @ClassName addArchiveDetail
|
|
* @Description 连州人员文件表新增实体
|
|
* @Author linjj
|
|
* @Date 2023/11/13 15:57
|
|
* @Version 1.0
|
|
*/
|
|
@Data
|
|
public class AddArchiveDetail {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@TableId(value = "ID", type = IdType.ASSIGN_UUID)
|
|
private String ID;
|
|
|
|
private String PDFPATH;
|
|
|
|
private String MasterID;
|
|
private String UpLoadDateTime;
|
|
private String AssortID;
|
|
private String Source;
|
|
private String flag;
|
|
|
|
private String Sys;
|
|
|
|
private String splitName;
|
|
}
|