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.
36 lines
726 B
36 lines
726 B
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 BaseBaseGraduation<M extends BaseBaseGraduation<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 setFinishYear(java.lang.Integer finishYear) {
|
|
set("finish_year", finishYear);
|
|
}
|
|
|
|
/**
|
|
* 哪一年的毕业处理过了?
|
|
*/
|
|
public java.lang.Integer getFinishYear() {
|
|
return getInt("finish_year");
|
|
}
|
|
|
|
}
|
|
|