renkang
2024-11-21 b4eb1b683886899c4914f2a97961144624c46c74
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.doumee.dao.web.response.platformReport;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 通用
 *
 * @Author : Rk
 * @create 2024/10/25 10:59
 */
@Data
public class GeneralVO {
 
    @ApiModelProperty(value = "名称")
    private String name;
 
    @ApiModelProperty(value = "数量")
    private BigDecimal num;
 
}