32b078c1c343b057d0e85a790400ac31984a66e2.svn-base 689 B

1234567891011121314151617181920212223242526272829
  1. package cn.com.goldenwater.dcproj.param;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import java.io.Serializable;
  4. public class GrwupdateCkCommentParam extends BisInspGrwBaseParam implements Serializable {
  5. @ApiModelProperty(value = "主键,必填")
  6. private String id;
  7. @ApiModelProperty(value = "检查人员评价(长度:4,000,必填)")
  8. private String checkComment;
  9. public String getId() {
  10. return id;
  11. }
  12. public void setId(String id) {
  13. this.id = id;
  14. }
  15. public String getCheckComment() {
  16. return checkComment;
  17. }
  18. public void setCheckComment(String checkComment) {
  19. this.checkComment = checkComment;
  20. }
  21. }