| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import io.swagger.annotations.ApiModelProperty;
- import java.util.Date;
- import java.io.Serializable;
- /**
- * ObjKeyPblmsParam
- *
- * @author lune
- * @date 2019-4-28
- */
- public class ObjKeyPblmsParam extends PageParam implements Serializable {
- // 唯一标识
- @ApiModelProperty(name = "唯一标识")
- private String id;
- // 序号
- @ApiModelProperty(name = "序号")
- private String sn;
- // 附件类型
- @ApiModelProperty(name = "附件类型")
- private String attachType;
- // 问题类型
- @ApiModelProperty(name = "问题类型")
- private String pblmType;
- // 附件号
- @ApiModelProperty(name = "附件号")
- private String attach;
- // sheet号
- @ApiModelProperty(name = "sheet号")
- private String sheet;
- // sheet文件名称
- @ApiModelProperty(name = "sheet文件名称")
- private String sheetName;
- // 检查问题名称
- @ApiModelProperty(name = "检查问题名称")
- private String inspPblmsName;
- // 检查项
- @ApiModelProperty(name = "检查项")
- private String checkPoint;
- // 问题描述
- @ApiModelProperty(name = "问题描述")
- private String pblmDesc;
- // 问题严重程度
- @ApiModelProperty(name = "问题严重程度")
- private String inspPblmCate;
- private String attachName;
- @ApiModelProperty("质量缺陷类型")
- private String className;
- public String getAttachName() {
- return attachName;
- }
- public void setAttachName(String attachName) {
- this.attachName = attachName;
- }
- public String getClassName() {
- return className;
- }
- public void setClassName(String className) {
- this.className = className;
- }
- public ObjKeyPblmsParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getSn() {
- return sn;
- }
- public void setSn(String sn) {
- this.sn = sn;
- }
- public String getAttachType() {
- return attachType;
- }
- public void setAttachType(String attachType) {
- this.attachType = attachType;
- }
- public String getPblmType() {
- return pblmType;
- }
- public void setPblmType(String pblmType) {
- this.pblmType = pblmType;
- }
- public String getAttach() {
- return attach;
- }
- public void setAttach(String attach) {
- this.attach = attach;
- }
- public String getSheet() {
- return sheet;
- }
- public void setSheet(String sheet) {
- this.sheet = sheet;
- }
- public String getSheetName() {
- return sheetName;
- }
- public void setSheetName(String sheetName) {
- this.sheetName = sheetName;
- }
- public String getInspPblmsName() {
- return inspPblmsName;
- }
- public void setInspPblmsName(String inspPblmsName) {
- this.inspPblmsName = inspPblmsName;
- }
- public String getCheckPoint() {
- return checkPoint;
- }
- public void setCheckPoint(String checkPoint) {
- this.checkPoint = checkPoint;
- }
- public String getPblmDesc() {
- return pblmDesc;
- }
- public void setPblmDesc(String pblmDesc) {
- this.pblmDesc = pblmDesc;
- }
- public String getInspPblmCate() {
- return inspPblmCate;
- }
- public void setInspPblmCate(String inspPblmCate) {
- this.inspPblmCate = inspPblmCate;
- }
- }
|