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.

92 lines
1.6 KiB
Java

1 year ago
package com.ann.demo.entity.filing;
import lombok.Data;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import java.util.Date;
/**
* <p>
*
* </p>
*
* @author ly
* @since 2019-04-24
*/
@Entity
@Data
public class ArchiveDetail {
/**
* id
*/
@Id
private String id;
/**
* pdf
*/
private String pdfPath;
/**
* masterid
*/
@Column(name = "masterid")
private String masterID;
/**
*
*/
@Column(name = "uploaddatetime")
private Date upLoadDateTime;
/**
* id
*/
@Column(name = "assortid")
private String assortID;
/**
*
*/
private String source;
/**
*
*/
@Column(name = "subassort")
private String subAssort;
/**
*
*/
private String title;
/**
* 0 1
*/
private String flag;
/**
*
*/
private String sys;
public ArchiveDetail(String id, String pdfPath, String masterID, Date upLoadDateTime, String assortID, String source, String subAssort, String title, String flag, String sys) {
this.id = id;
this.pdfPath = pdfPath;
this.masterID = masterID;
this.upLoadDateTime = upLoadDateTime;
this.assortID = assortID;
this.source = source;
this.subAssort = subAssort;
this.title = title;
this.flag = flag;
this.sys = sys;
}
public ArchiveDetail() {
}
}