yuan
2026-05-20 d8cf4b3db03a4a4c2d12ef21eaec78cb7d3b10d1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.ruoyi.account.bean.dto;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * @author :yys
 * @date : 2026/1/17 13:42
 */
@Data
public class DeviceTypeDetail {
 
    private String type;       // 设备类型
    private BigDecimal count;  // 数量
    private BigDecimal amount; // 价格
}