| | |
| | | //作为外键,对应I类考场的item_id |
| | | @ColumnInfo(name = "emp_id") |
| | | private int emp_id; |
| | | |
| | | public FailedProj(int subject, int emp_id,long stu_id) { |
| | | private int sn; |
| | | private String utc; |
| | | public FailedProj(int subject, int emp_id,long stu_id,String utc,int sn) { |
| | | this.subject = subject; |
| | | this.emp_id = emp_id; |
| | | this.stu_id = stu_id; |
| | | this.sn = sn; |
| | | this.utc = utc; |
| | | } |
| | | 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 int getId() { |
| | | return id; |
| | | } |
| | |
| | | public void setEmp_id(int emp_id) { |
| | | this.emp_id = emp_id; |
| | | } |
| | | |
| | | @Override |
| | | public String toString() { |
| | | return "FailedProj{" + |
| | | "id=" + id + |
| | | ", stu_id=" + stu_id + |
| | | ", subject=" + subject + |
| | | ", emp_id=" + emp_id + |
| | | ", sn=" + sn + |
| | | ", utc='" + utc + '\'' + |
| | | '}'; |
| | | } |
| | | } |