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.consum.base.pojo.dto;
|
| import lombok.Data;
|
| /**
| * @author asus
| * @version 1.0
| * @description: 物品型号转换
| * @date 2023/12/6 10:12
| */
| @Data
| public class GoodModelInfoDTO {
|
| private Long id;
| private Long categoryId;
| private String categoryName;
| private Long baseGoodsTemplateId;
| private String baseGoodsName;
| private String baseGoodsModelsName;
| private String unit;
| private Integer counts;
| private Integer totalAmount;
| }
|
|