| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.dcproj.model.BisInspTaskDthDay;
- /**
- * @author
- */
- public class BisInspTaskDthDayDto extends BisInspTaskDthDay {
- private String timeType;
- /**
- * 稽察 年度
- */
- private String year;
- /**
- * 稽察 批次
- */
- private String batch;
- /**
- * 稽察 最后步骤
- */
- private String lastStepId;
- private String persId;
- private String[] rgsterTable;
- /**
- * 对比 类型
- * @return
- */
- private String compareType;
- /**
- * 展示条数
- * @return
- */
- private Integer topNum;
- /**
- * 办公动态
- * 1 法律法规
- * 2 最新问题
- * 3 待办事项
- * @return
- */
- private Integer topType;
- public String getPersId() {
- return persId;
- }
- public void setPersId(String persId) {
- this.persId = persId;
- }
- public String[] getRgsterTable() {
- return rgsterTable;
- }
- public void setRgsterTable(String[] rgsterTable) {
- this.rgsterTable = rgsterTable;
- }
- public String getLastStepId() {
- return lastStepId;
- }
- public void setLastStepId(String lastStepId) {
- this.lastStepId = lastStepId;
- }
- public String getYear() {
- return year;
- }
- public void setYear(String year) {
- this.year = year;
- }
- public String getBatch() {
- return batch;
- }
- public void setBatch(String batch) {
- this.batch = batch;
- }
- public String getTimeType() {
- return timeType;
- }
- public void setTimeType(String timeType) {
- this.timeType = timeType;
- }
- public String getCompareType() {
- return compareType;
- }
- public void setCompareType(String compareType) {
- this.compareType = compareType;
- }
- public Integer getTopNum() {
- return topNum;
- }
- public void setTopNum(Integer topNum) {
- this.topNum = topNum;
- }
- public Integer getTopType() {
- return topType;
- }
- public void setTopType(Integer topType) {
- this.topType = topType;
- }
- }
|