package safeluck.drive.evaluation.DB.failitems;
|
|
import androidx.room.ColumnInfo;
|
|
/**
|
* MyApplication2
|
* Created by lzw on 2019/11/26. 18:22:03
|
* 邮箱:632393724@qq.com
|
* All Rights Saved! Chongqing AnYun Tech co. LTD
|
*/
|
public class FailedProj_select {
|
|
|
private int emp_id;
|
|
private long stu_id;
|
private String item_content;
|
private String deducting_reason;
|
private int sn;
|
private String utc;
|
private int score_deducting;
|
|
public int getEmp_id() {
|
return emp_id;
|
}
|
|
public void setEmp_id(int emp_id) {
|
this.emp_id = emp_id;
|
}
|
|
public String getItem_content() {
|
return item_content;
|
}
|
|
public void setItem_content(String item_content) {
|
this.item_content = item_content;
|
}
|
|
public String getDeducting_reason() {
|
return deducting_reason;
|
}
|
|
public void setDeducting_reason(String deducting_reason) {
|
this.deducting_reason = deducting_reason;
|
}
|
|
public int getSn() {
|
return sn;
|
}
|
|
public void setSn(int sn) {
|
this.sn = sn;
|
}
|
|
public String getUtc() {
|
return utc;
|
}
|
|
public void setUtc(String utc) {
|
this.utc = utc;
|
}
|
|
public long getStu_id() {
|
return stu_id;
|
}
|
|
public void setStu_id(long stu_id) {
|
this.stu_id = stu_id;
|
}
|
|
public int getScore_deducting() {
|
return score_deducting;
|
}
|
|
public void setScore_deducting(int score_deducting) {
|
this.score_deducting = score_deducting;
|
}
|
|
@Override
|
public String toString() {
|
return "FailedProj_select{" +
|
"emp_id=" + emp_id +
|
", stu_id=" + stu_id +
|
", item_content='" + item_content + '\'' +
|
", deducting_reason='" + deducting_reason + '\'' +
|
", score_deducting=" + score_deducting +
|
'}';
|
}
|
}
|