| | |
| | | package com.doumee.core.model.openapi.request; |
| | | |
| | | import com.doumee.core.haikang.model.param.BaseRequst; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | |
| | | */ |
| | | @Data |
| | | @ApiModel("访客申请审批结果通知请求信息") |
| | | public class ApproveNoticeRequest { |
| | | public class ApproveNoticeRequest extends BaseRequst { |
| | | @ApiModelProperty(value = "审批记录唯一标识(ERP端ID)" ,example = "1") |
| | | private Integer id; |
| | | @ApiModelProperty(value = "审批结果 0-不通过 1-通过,默认 0" ,example = "1") |
| | | private Integer status; |
| | | @ApiModelProperty(value = "审核时间" ) |
| | | @ApiModelProperty(value = "审核时间 yyyy-MM-dd HH:mm:ss" ) |
| | | private String approveDate ; |
| | | } |