MrShi
2025-03-12 69a1b3bf45738f048361ee4ccb6bdc64fce35720
server/visits/dmvisit_service/src/main/java/com/doumee/dao/web/response/platformReport/BoardJobCenterDataVO.java
¶Ô±ÈÐÂÎļþ
@@ -0,0 +1,25 @@
package com.doumee.dao.web.response.platformReport;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
/**
 * è¿è¾“量
 *
 * @Author : Rk
 * @create 2024/10/25 10:59
 */
@Data
public class BoardJobCenterDataVO {
    @ApiModelProperty(value = "在途数量")
    private int busyNum;
    @ApiModelProperty(value = "空闲数量")
    private int idleNum;
    @ApiModelProperty(value = "离线数量")
    private int offlineNum;
}