You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
2.0 KiB
Java

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package com.sztzjy.linkCommerce.entity;
import io.swagger.annotations.ApiModelProperty;
/**
* 产品问题诊断-五维四率 学生答案表
*
* @author whb
* cpwtzd_kanomx_answer
*/
public class CpwtzdKanomxAnswer {
@ApiModelProperty(notes = "主键格式CPWTZDA_时间戳_哈希值CPWTZDA_2023110614_9d7b6c5e")
private String id;
@ApiModelProperty(notes = "任务4 空1")
private String rw4One;
@ApiModelProperty(notes = "任务4 空2")
private String rw4Two;
@ApiModelProperty(notes = "任务4 空3")
private String rw4Three;
@ApiModelProperty(notes = "任务5 空1")
private String rw5One;
@ApiModelProperty(notes = "任务5 空2")
private String rw5Two;
@ApiModelProperty(notes = "任务5 空3")
private String rw5Three;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id == null ? null : id.trim();
}
public String getRw4One() {
return rw4One;
}
public void setRw4One(String rw4One) {
this.rw4One = rw4One == null ? null : rw4One.trim();
}
public String getRw4Two() {
return rw4Two;
}
public void setRw4Two(String rw4Two) {
this.rw4Two = rw4Two == null ? null : rw4Two.trim();
}
public String getRw4Three() {
return rw4Three;
}
public void setRw4Three(String rw4Three) {
this.rw4Three = rw4Three == null ? null : rw4Three.trim();
}
public String getRw5One() {
return rw5One;
}
public void setRw5One(String rw5One) {
this.rw5One = rw5One == null ? null : rw5One.trim();
}
public String getRw5Two() {
return rw5Two;
}
public void setRw5Two(String rw5Two) {
this.rw5Two = rw5Two == null ? null : rw5Two.trim();
}
public String getRw5Three() {
return rw5Three;
}
public void setRw5Three(String rw5Three) {
this.rw5Three = rw5Three == null ? null : rw5Three.trim();
}
}