123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- package net.chenlin.dp.modules.sys.entity;
- import java.io.Serializable;
- import java.sql.Timestamp;
- import java.util.List;
- public class SyViewEntity implements Serializable {
- private static final long serialVersionUID = 1L;
-
- private String oaId;
-
- private String parType;
-
- private String accountCode;
-
- private String deptName;
-
- private String deptCode;
-
- private String jobNumber;
-
- private String syMessage;
-
- private Timestamp createTime;
-
- private String tableType;
- public String getTableType() {
- return tableType;
- }
- public void setTableType(String tableType) {
- this.tableType = tableType;
- }
- public String getOaId() {
- return oaId;
- }
- public void setOaId(String oaId) {
- this.oaId = oaId;
- }
- public String getParType() {
- return parType;
- }
- public void setParType(String parType) {
- this.parType = parType;
- }
- public String getAccountCode() {
- return accountCode;
- }
- public void setAccountCode(String accountCode) {
- this.accountCode = accountCode;
- }
- public String getDeptName() {
- return deptName;
- }
- public void setDeptName(String deptName) {
- this.deptName = deptName;
- }
- public String getDeptCode() {
- return deptCode;
- }
- public void setDeptCode(String deptCode) {
- this.deptCode = deptCode;
- }
- public String getJobNumber() {
- return jobNumber;
- }
- public void setJobNumber(String jobNumber) {
- this.jobNumber = jobNumber;
- }
- public String getSyMessage() {
- return syMessage;
- }
- public void setSyMessage(String syMessage) {
- this.syMessage = syMessage;
- }
- public Timestamp getCreateTime() {
- return createTime;
- }
- public void setCreateTime(Timestamp createTime) {
- this.createTime = createTime;
- }
- }
|