| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.model.BaseBean;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- public class IndexPblmParam extends BaseBean implements Serializable {
- @ApiModelProperty(value = "结束时间")
- private String ettm;
- @ApiModelProperty("开始时间")
- private String sttm;
- @ApiModelProperty("所属机构,多个机构用逗号分隔")
- private String orgIds;
- @ApiModelProperty(value = "问题新增或累计状态", required = true)
- private String pblmState;
- @ApiModelProperty("字符串截取长度")
- private String length;
- @ApiModelProperty("剩余长度")
- private String otherLength;
- public String getLength() {
- return length;
- }
- public void setLength(String length) {
- this.length = length;
- }
- public String getOtherLength() {
- return otherLength;
- }
- public void setOtherLength(String otherLength) {
- this.otherLength = otherLength;
- }
- @ApiModelProperty("督查对象类型")
- private String type;
- @ApiModelProperty("行政区划")
- private String adCode;
- @ApiModelProperty(value = "日期类型,day,week,year",required = true)
- private String dtype;
- @ApiModelProperty("向前推的时间,做补0")
- private String seltime;
- @ApiModelProperty("简报引用:1为已经引用")
- private String quote;
- public String getQuote() {
- return quote;
- }
- public void setQuote(String quote) {
- this.quote = quote;
- }
- public String getEttm() {
- return ettm;
- }
- public void setEttm(String ettm) {
- this.ettm = ettm;
- }
- public String getSttm() {
- return sttm;
- }
- public void setSttm(String sttm) {
- this.sttm = sttm;
- }
- public String getOrgIds() {
- return orgIds;
- }
- public void setOrgIds(String orgIds) {
- this.orgIds = orgIds;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getAdCode() {
- return adCode;
- }
- public void setAdCode(String adCode) {
- this.adCode = adCode;
- }
- public String getPblmState() {
- return pblmState;
- }
- public void setPblmState(String pblmState) {
- this.pblmState = pblmState;
- }
- public String getDtype() {
- return dtype;
- }
- public void setDtype(String dtype) {
- this.dtype = dtype;
- }
- public String getSeltime() {
- return seltime;
- }
- public void setSeltime(String seltime) {
- this.seltime = seltime;
- }
- }
|