| | |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author zhibing.pu |
| | | * @Date 2024/12/20 10:32 |
| | |
| | | @ApiModelProperty("车船对象数据[{\"vehicleType\":1,\"vehicleId\":123},{\"vehicleType\":2,\"vehicleId\":456}]") |
| | | private String vehicle; |
| | | @ApiModelProperty("执行状态(1=待执行,2=执行中,3=成功,4=离线,5=失败)") |
| | | private Integer status; |
| | | private List<Integer> status; |
| | | @ApiModelProperty("系统审核(1=未执行,2=正常,3=异常)") |
| | | private Integer sysStatus; |
| | | @ApiModelProperty("系统审核(1=未执行,2=正常,3=异常)") |
| | | private Integer artificialStatus; |
| | | private List<Integer> sysStatus; |
| | | @ApiModelProperty("人工审核(1=未执行,2=正常,3=异常)") |
| | | private List<Integer> artificialStatus; |
| | | |
| | | @ApiModelProperty("是否有图片(0=无,1=有)") |
| | | private Integer havePic; |
| | | |
| | | } |