1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.ruoyi.procurementrecord.dto;
|
| import lombok.Data;
|
| /**
| * @author :yys
| * @date : 2025/7/8 13:34
| */
| @Data
| public class ProcurementRecordOutAdd {
|
| private String quantity;
|
| private String time;
|
| private Integer id;
|
| private Integer userId;
|
| private Integer salesLedgerProductId;
|
| }
|
|