You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
1.4 KiB
Java
86 lines
1.4 KiB
Java
package com.rehome.dywoa.DBModel;
|
|
|
|
|
|
import org.litepal.crud.DataSupport;
|
|
|
|
/**
|
|
* Created by HuangWenfei on 2024/05/22.
|
|
*/
|
|
|
|
public class XcjsInfo extends DataSupport {
|
|
|
|
private int id;
|
|
private String ms;
|
|
private String jhid;
|
|
private String pointnum;
|
|
private String djr;
|
|
private String filename;
|
|
private boolean uploaded;
|
|
|
|
private String username;
|
|
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(int id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public String getMs() {
|
|
return ms;
|
|
}
|
|
|
|
public void setMs(String ms) {
|
|
this.ms = ms;
|
|
}
|
|
|
|
public String getJhid() {
|
|
return jhid;
|
|
}
|
|
|
|
public void setJhid(String jhid) {
|
|
this.jhid = jhid;
|
|
}
|
|
|
|
public String getPointnum() {
|
|
return pointnum;
|
|
}
|
|
|
|
public void setPointnum(String pointnum) {
|
|
this.pointnum = pointnum;
|
|
}
|
|
|
|
public String getDjr() {
|
|
return djr;
|
|
}
|
|
|
|
public void setDjr(String djr) {
|
|
this.djr = djr;
|
|
}
|
|
|
|
public String getFilename() {
|
|
return filename;
|
|
}
|
|
|
|
public void setFilename(String filename) {
|
|
this.filename = filename;
|
|
}
|
|
|
|
public boolean isUploaded() {
|
|
return uploaded;
|
|
}
|
|
|
|
public void setUploaded(boolean uploaded) {
|
|
this.uploaded = uploaded;
|
|
}
|
|
|
|
public String getUsername() {
|
|
return username;
|
|
}
|
|
|
|
public void setUsername(String username) {
|
|
this.username = username;
|
|
}
|
|
}
|