| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package com.template.model.vo;
- import com.baomidou.mybatisplus.annotation.FieldFill;
- import com.baomidou.mybatisplus.annotation.TableField;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.util.Date;
- @Data
- public class SmartVisitorParentsConfigVo {
- private Integer id;
- @ApiModelProperty(value = "年级ID")
- private Integer classId;
- private String className;
- private String gradeName;
- @ApiModelProperty(value = "小程序审核配置 1:需要审核, 4:不需要审核")
- private Integer appAuditConfig;
- @ApiModelProperty(value = "小程序推送配置 5:需要推送,3:不需要推送")
- private Integer appPushConfig;
- @ApiModelProperty(value = "小程序核销配置 6:需要核销,7:不需要核销")
- private Integer appCancelConfig;
- @ApiModelProperty(value = "大屏序审核配置 1:需要审核, 4:不需要审核")
- private Integer screenAuditConfig;
- @ApiModelProperty(value = "大屏序推送配置 5:需要推送,3:不需要推送")
- private Integer screenPushConfig;
- @ApiModelProperty(value = "大屏核销配置 6:需要核销,7:不需要核销")
- private Integer screenCancelConfig;
- @ApiModelProperty(value = "门禁配置 0:推送到门禁,1:不推送到门禁")
- private Integer accessConfig;
- @ApiModelProperty(value = "车闸配置 0:推送到车闸,1:不推送到车闸")
- private Integer carConfig;
- @ApiModelProperty(value = "创建时间")
- private Date createTime;
- }
|