maven
2025-10-22 5a7297f4b57b40801b0cf0247a42e883d3c986bb
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;
 
}