package cn.flightfeather.supervision.domain.entity;
|
|
import java.util.Date;
|
import javax.persistence.*;
|
|
@Table(name = "ea_t_mediafile")
|
public class LedgerMediaFile {
|
@Id
|
@Column(name = "MF_GUID")
|
private String mfGuid;
|
|
@Column(name = "LR_GUID")
|
private String lrGuid;
|
|
@Column(name = "CI_GUID")
|
private String ciGuid;
|
|
@Column(name = "MF_FileType")
|
private Integer mfFiletype;
|
|
@Column(name = "MF_Path1")
|
private String mfPath1;
|
|
@Column(name = "MF_Description1")
|
private String mfDescription1;
|
|
@Column(name = "MF_Path2")
|
private String mfPath2;
|
|
@Column(name = "MF_Description2")
|
private String mfDescription2;
|
|
@Column(name = "MF_SaveTime")
|
private Date mfSavetime;
|
|
@Column(name = "MF_IsDelete")
|
private Boolean mfIsdelete;
|
|
@Column(name = "MF_Extension1")
|
private String mfExtension1;
|
|
@Column(name = "MF_Extension2")
|
private String mfExtension2;
|
|
@Column(name = "MF_Extension3")
|
private String mfExtension3;
|
|
@Column(name = "MF_Remark")
|
private String mfRemark;
|
|
/**
|
* @return MF_GUID
|
*/
|
public String getMfGuid() {
|
return mfGuid;
|
}
|
|
/**
|
* @param mfGuid
|
*/
|
public void setMfGuid(String mfGuid) {
|
this.mfGuid = mfGuid == null ? null : mfGuid.trim();
|
}
|
|
/**
|
* @return LR_GUID
|
*/
|
public String getLrGuid() {
|
return lrGuid;
|
}
|
|
/**
|
* @param lrGuid
|
*/
|
public void setLrGuid(String lrGuid) {
|
this.lrGuid = lrGuid == null ? null : lrGuid.trim();
|
}
|
|
/**
|
* @return CI_GUID
|
*/
|
public String getCiGuid() {
|
return ciGuid;
|
}
|
|
/**
|
* @param ciGuid
|
*/
|
public void setCiGuid(String ciGuid) {
|
this.ciGuid = ciGuid == null ? null : ciGuid.trim();
|
}
|
|
/**
|
* @return MF_FileType
|
*/
|
public Integer getMfFiletype() {
|
return mfFiletype;
|
}
|
|
/**
|
* @param mfFiletype
|
*/
|
public void setMfFiletype(Integer mfFiletype) {
|
this.mfFiletype = mfFiletype;
|
}
|
|
/**
|
* @return MF_Path1
|
*/
|
public String getMfPath1() {
|
return mfPath1;
|
}
|
|
/**
|
* @param mfPath1
|
*/
|
public void setMfPath1(String mfPath1) {
|
this.mfPath1 = mfPath1 == null ? null : mfPath1.trim();
|
}
|
|
/**
|
* @return MF_Description1
|
*/
|
public String getMfDescription1() {
|
return mfDescription1;
|
}
|
|
/**
|
* @param mfDescription1
|
*/
|
public void setMfDescription1(String mfDescription1) {
|
this.mfDescription1 = mfDescription1 == null ? null : mfDescription1.trim();
|
}
|
|
/**
|
* @return MF_Path2
|
*/
|
public String getMfPath2() {
|
return mfPath2;
|
}
|
|
/**
|
* @param mfPath2
|
*/
|
public void setMfPath2(String mfPath2) {
|
this.mfPath2 = mfPath2 == null ? null : mfPath2.trim();
|
}
|
|
/**
|
* @return MF_Description2
|
*/
|
public String getMfDescription2() {
|
return mfDescription2;
|
}
|
|
/**
|
* @param mfDescription2
|
*/
|
public void setMfDescription2(String mfDescription2) {
|
this.mfDescription2 = mfDescription2 == null ? null : mfDescription2.trim();
|
}
|
|
/**
|
* @return MF_SaveTime
|
*/
|
public Date getMfSavetime() {
|
return mfSavetime;
|
}
|
|
/**
|
* @param mfSavetime
|
*/
|
public void setMfSavetime(Date mfSavetime) {
|
this.mfSavetime = mfSavetime;
|
}
|
|
/**
|
* @return MF_IsDelete
|
*/
|
public Boolean getMfIsdelete() {
|
return mfIsdelete;
|
}
|
|
/**
|
* @param mfIsdelete
|
*/
|
public void setMfIsdelete(Boolean mfIsdelete) {
|
this.mfIsdelete = mfIsdelete;
|
}
|
|
/**
|
* @return MF_Extension1
|
*/
|
public String getMfExtension1() {
|
return mfExtension1;
|
}
|
|
/**
|
* @param mfExtension1
|
*/
|
public void setMfExtension1(String mfExtension1) {
|
this.mfExtension1 = mfExtension1 == null ? null : mfExtension1.trim();
|
}
|
|
/**
|
* @return MF_Extension2
|
*/
|
public String getMfExtension2() {
|
return mfExtension2;
|
}
|
|
/**
|
* @param mfExtension2
|
*/
|
public void setMfExtension2(String mfExtension2) {
|
this.mfExtension2 = mfExtension2 == null ? null : mfExtension2.trim();
|
}
|
|
/**
|
* @return MF_Extension3
|
*/
|
public String getMfExtension3() {
|
return mfExtension3;
|
}
|
|
/**
|
* @param mfExtension3
|
*/
|
public void setMfExtension3(String mfExtension3) {
|
this.mfExtension3 = mfExtension3 == null ? null : mfExtension3.trim();
|
}
|
|
/**
|
* @return MF_Remark
|
*/
|
public String getMfRemark() {
|
return mfRemark;
|
}
|
|
/**
|
* @param mfRemark
|
*/
|
public void setMfRemark(String mfRemark) {
|
this.mfRemark = mfRemark == null ? null : mfRemark.trim();
|
}
|
}
|