package com.doumee.dao.business.vo;
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
import com.baomidou.mybatisplus.annotation.TableId;
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* Created by IntelliJ IDEA.
|
*
|
* @Author : Rk
|
* @create 2025/1/8 15:32
|
*/
|
@Data
|
public class YwWorkorderDataVO {
|
|
|
@ApiModelProperty(value = "待指派数量", example = "1")
|
private Integer waitAssignAmount;
|
|
@ApiModelProperty(value = "待处理数量", example = "1")
|
private Integer waitDealAmount;
|
|
@ApiModelProperty(value = "本月总数", example = "1")
|
private Integer monthAmount;
|
|
@ApiModelProperty(value = "累计总数", example = "1")
|
private Integer amount;
|
|
}
|