UpdateEvaluateTemplateStatusDto.java 532 B

12345678910111213141516171819202122232425262728
  1. package com.xjrsoft.module.evaluate.dto;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Data;
  4. import java.io.Serializable;
  5. /**
  6. * @title: 评价模版
  7. * @Author szs
  8. * @Date: 2024-01-15
  9. * @Version 1.0
  10. */
  11. @Data
  12. public class UpdateEvaluateTemplateStatusDto implements Serializable {
  13. private static final long serialVersionUID = 1L;
  14. /**
  15. * 主键编号
  16. */
  17. @ApiModelProperty("主键编号")
  18. private Long id;
  19. @ApiModelProperty("状态(0:禁用 1:启用)")
  20. private Integer status;
  21. }