package com.doumee.dao.admin.request;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
|
/**
|
* @author T14
|
*/
|
@Data
|
@ApiModel("劳务来访配置")
|
public class VisitConfigDTO {
|
|
@ApiModelProperty(value = "来访预约方式")
|
private Integer reservationWay;
|
|
@ApiModelProperty(value = "被访人校验方式")
|
private Integer checkVisit;
|
|
@ApiModelProperty(value = "健康证是否必填")
|
private Integer healthCard;
|
|
@ApiModelProperty(value = "劳务是否答题")
|
private Integer isAnswer;
|
|
@ApiModelProperty(value = "劳务答题主题")
|
private String theme;
|
|
@ApiModelProperty(value = "劳务答题说明")
|
private String description;
|
}
|