nidapeng
2024-03-19 6c40e04eb7c2060feb2533735cd3089d438965e5
server/dmvisit_service/src/main/java/com/doumee/dao/admin/request/LaborConfigParam.java
@@ -1,19 +1,21 @@
package com.doumee.dao.admin.request;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
@Data
public class LaborConfigParam {
    @ApiModelProperty(value = "来访预约方式")
    private String reservationWay = "";
    private Integer reservationWay;
    @ApiModelProperty(value = "被访人校验方式")
    private String checkVisit = "";
    private Integer checkVisit;
    @ApiModelProperty(value = "健康证是否必填")
    private String healthCard = "";
    private Integer healthCard;
    @ApiModelProperty(value = "劳务是否答题")
    private String isAnswer = "";
    private Integer isAnswer;
}