| 1234567891011121314151617181920212223242526272829 |
- package cn.com.goldenwater.dcproj.param;
- import io.swagger.annotations.ApiModelProperty;
- import java.io.Serializable;
- public class GrwupdateCkCommentParam extends BisInspGrwBaseParam implements Serializable {
- @ApiModelProperty(value = "主键,必填")
- private String id;
- @ApiModelProperty(value = "检查人员评价(长度:4,000,必填)")
- private String checkComment;
- public String getId() {
- return id;
- }
- public void setId(String id) {
- this.id = id;
- }
- public String getCheckComment() {
- return checkComment;
- }
- public void setCheckComment(String checkComment) {
- this.checkComment = checkComment;
- }
- }
|