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.
96 lines
1.8 KiB
96 lines
1.8 KiB
package com.bt.common.model.base;
|
|
|
|
import com.jfinal.plugin.activerecord.Model;
|
|
import com.jfinal.plugin.activerecord.IBean;
|
|
|
|
/**
|
|
* Generated by JFinal, do not modify this file.
|
|
*/
|
|
@SuppressWarnings("serial")
|
|
public abstract class BaseDownload<M extends BaseDownload<M>> extends Model<M> implements IBean {
|
|
|
|
public void setId(java.lang.Integer id) {
|
|
set("id", id);
|
|
}
|
|
|
|
public java.lang.Integer getId() {
|
|
return getInt("id");
|
|
}
|
|
|
|
public void setFileName(java.lang.String fileName) {
|
|
set("fileName", fileName);
|
|
}
|
|
|
|
public java.lang.String getFileName() {
|
|
return getStr("fileName");
|
|
}
|
|
|
|
/**
|
|
* 描述
|
|
*/
|
|
public void setDescr(java.lang.String descr) {
|
|
set("descr", descr);
|
|
}
|
|
|
|
/**
|
|
* 描述
|
|
*/
|
|
public java.lang.String getDescr() {
|
|
return getStr("descr");
|
|
}
|
|
|
|
/**
|
|
* 文件类型
|
|
*/
|
|
public void setFileType(java.lang.String fileType) {
|
|
set("fileType", fileType);
|
|
}
|
|
|
|
/**
|
|
* 文件类型
|
|
*/
|
|
public java.lang.String getFileType() {
|
|
return getStr("fileType");
|
|
}
|
|
|
|
public void setSize(java.lang.String size) {
|
|
set("size", size);
|
|
}
|
|
|
|
public java.lang.String getSize() {
|
|
return getStr("size");
|
|
}
|
|
|
|
public void setCreateDate(java.util.Date createDate) {
|
|
set("createDate", createDate);
|
|
}
|
|
|
|
public java.util.Date getCreateDate() {
|
|
return getDate("createDate");
|
|
}
|
|
|
|
public void setPath(java.lang.String path) {
|
|
set("path", path);
|
|
}
|
|
|
|
public java.lang.String getPath() {
|
|
return getStr("path");
|
|
}
|
|
|
|
public void setDownloadCount(java.lang.Integer downloadCount) {
|
|
set("downloadCount", downloadCount);
|
|
}
|
|
|
|
public java.lang.Integer getDownloadCount() {
|
|
return getInt("downloadCount");
|
|
}
|
|
|
|
public void setIsShow(java.lang.Integer isShow) {
|
|
set("isShow", isShow);
|
|
}
|
|
|
|
public java.lang.Integer getIsShow() {
|
|
return getInt("isShow");
|
|
}
|
|
|
|
}
|
|
|