| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- package cn.com.goldenwater.dcproj.param;
- import cn.com.goldenwater.core.param.PageParam;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- /**
- * TacPblmQlttvListParam
- *
- * @author lune
- * @date 2019-9-19
- */
- public class TacPblmQlttvListParam extends PageParam implements Serializable {
- @ApiModelProperty("主键id")
- private String id;
- @ApiModelProperty("专业类型(1:前期;2:建管;3:计划;4:财务;5:质量;6:安全)")
- private String type;
- @ApiModelProperty("问题定性分类编码")
- private String code;
- @ApiModelProperty("问题定性分类名称")
- private String name;
- @ApiModelProperty("排序顺序")
- private Double sn;
- @ApiModelProperty("关联问题序号")
- private String relCode;
- @ApiModelProperty("备注信息")
- private String note;
- public String getRelCode() {
- return relCode;
- }
- public String getNote() {
- return note;
- }
- public void setNote(String note) {
- this.note = note;
- }
- public void setRelCode(String relCode) {
- this.relCode = relCode;
- }
- public TacPblmQlttvListParam() {
- }
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getType() {
- return type;
- }
- public void setType(String type) {
- this.type = type;
- }
- public String getCode() {
- return code;
- }
- public void setCode(String code) {
- this.code = code;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public Double getSn() {
- return sn;
- }
- public void setSn(Double sn) {
- this.sn = sn;
- }
- }
|