SmartVisitorParentsConfigVo.java 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. package com.template.model.vo;
  2. import com.baomidou.mybatisplus.annotation.FieldFill;
  3. import com.baomidou.mybatisplus.annotation.TableField;
  4. import io.swagger.annotations.ApiModelProperty;
  5. import lombok.Data;
  6. import java.util.Date;
  7. @Data
  8. public class SmartVisitorParentsConfigVo {
  9. private Integer id;
  10. @ApiModelProperty(value = "年级ID")
  11. private Integer classId;
  12. private String className;
  13. private String gradeName;
  14. @ApiModelProperty(value = "小程序审核配置 1:需要审核, 4:不需要审核")
  15. private Integer appAuditConfig;
  16. @ApiModelProperty(value = "小程序推送配置 5:需要推送,3:不需要推送")
  17. private Integer appPushConfig;
  18. @ApiModelProperty(value = "小程序核销配置 6:需要核销,7:不需要核销")
  19. private Integer appCancelConfig;
  20. @ApiModelProperty(value = "大屏序审核配置 1:需要审核, 4:不需要审核")
  21. private Integer screenAuditConfig;
  22. @ApiModelProperty(value = "大屏序推送配置 5:需要推送,3:不需要推送")
  23. private Integer screenPushConfig;
  24. @ApiModelProperty(value = "大屏核销配置 6:需要核销,7:不需要核销")
  25. private Integer screenCancelConfig;
  26. @ApiModelProperty(value = "门禁配置 0:推送到门禁,1:不推送到门禁")
  27. private Integer accessConfig;
  28. @ApiModelProperty(value = "车闸配置 0:推送到车闸,1:不推送到车闸")
  29. private Integer carConfig;
  30. @ApiModelProperty(value = "创建时间")
  31. private Date createTime;
  32. }