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.
56 lines
1.1 KiB
56 lines
1.1 KiB
package com.dsideal.Res.Model;
|
|
|
|
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 BaseTransferApplyStatus<M extends BaseTransferApplyStatus<M>> extends Model<M> implements IBean {
|
|
|
|
/**
|
|
* 申请ID
|
|
*/
|
|
public void setApplyStatusId(java.lang.Integer applyStatusId) {
|
|
set("apply_status_id", applyStatusId);
|
|
}
|
|
|
|
/**
|
|
* 申请ID
|
|
*/
|
|
public java.lang.Integer getApplyStatusId() {
|
|
return getInt("apply_status_id");
|
|
}
|
|
|
|
/**
|
|
* 申请状态
|
|
*/
|
|
public void setApplyStatusName(java.lang.String applyStatusName) {
|
|
set("apply_status_name", applyStatusName);
|
|
}
|
|
|
|
/**
|
|
* 申请状态
|
|
*/
|
|
public java.lang.String getApplyStatusName() {
|
|
return getStr("apply_status_name");
|
|
}
|
|
|
|
/**
|
|
* 审核时是否可见
|
|
*/
|
|
public void setForCheck(java.lang.Integer forCheck) {
|
|
set("for_check", forCheck);
|
|
}
|
|
|
|
/**
|
|
* 审核时是否可见
|
|
*/
|
|
public java.lang.Integer getForCheck() {
|
|
return getInt("for_check");
|
|
}
|
|
|
|
}
|
|
|