| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- package cn.com.goldenwater.dcproj.dto;
- import cn.com.goldenwater.dcproj.model.BisInspBidRgstr;
- import io.swagger.annotations.ApiModelProperty;
- import io.swagger.annotations.ApiParam;
- import java.util.Date;
- public class BisInspBidRgstrDto extends BisInspBidRgstr {
- // 基础表id
- private String code;
- // 基础表id
- private String baseId;
- //组id
- private String nodeId;
- // 对象名称
- private String nm;
- // ptype
- private String pType;
- // 对象ut_Type
- private String type;
- //督查组名称groupName
- private String groupName;
- private String plnaId;
- private String state;
- @ApiParam(name = "时间条件-开始时间")
- @ApiModelProperty(value = "时间条件-开始时间", name = "sttm")
- private String sttm;
- @ApiParam(name = "时间条件-结束时间")
- @ApiModelProperty(value = "时间条件-结束时间", name = "entm")
- private String entm;
- public String getPlnaId() {
- return plnaId;
- }
- public void setPlnaId(String plnaId) {
- this.plnaId = plnaId;
- }
- public String getSttm() {
- return sttm;
- }
- public void setSttm(String sttm) {
- this.sttm = sttm;
- }
- public String getEntm() {
- return entm;
- }
- public void setEntm(String entm) {
- this.entm = entm;
- }
- @Override
- public String getState() {
- return state;
- }
- @Override
- public void setState(String state) {
- this.state = state;
- }
- public String getGroupName() {
- return groupName;
- }
- public void setGroupName(String groupName) {
- this.groupName = groupName;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getNodeId() {
- return nodeId;
- }
- public void setNodeId(String nodeId) {
- this.nodeId = nodeId;
- }
- public String getNm() {
- return nm;
- }
- public void setNm(String nm) {
- this.nm = nm;
- }
- public String getpType() {
- return pType;
- }
- public void setpType(String pType) {
- this.pType = pType;
- }
- public String getBaseId() {
- return baseId;
- }
- public void setBaseId(String baseId) {
- this.baseId = baseId;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- }
|