AppFeedback.java 803 B

12345678910111213141516171819202122232425262728293031
  1. package com.railway.business.app.domain;
  2. import com.railway.common.core.domain.BaseEntity;
  3. import io.swagger.annotations.ApiModel;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import lombok.Data;
  6. import lombok.EqualsAndHashCode;
  7. import org.hibernate.validator.constraints.Length;
  8. /**
  9. * @author ZhaoMn
  10. */
  11. @Data
  12. @ApiModel("apk问题反馈")
  13. @EqualsAndHashCode(callSuper = true)
  14. public class AppFeedback extends BaseEntity {
  15. @ApiModelProperty(value = "主键", hidden = true)
  16. private Long id;
  17. @ApiModelProperty(value = "用户id")
  18. private Long userId;
  19. @ApiModelProperty(value = "意见建议")
  20. private String content;
  21. @ApiModelProperty(value = "del_flag")
  22. @Length(min = 1, max = 1, message = "【del_flag】长度必须介于 {min} 和 {max} 之间")
  23. private String delFlag;
  24. }