zss
2 天以前 3001173ec71036a44fc09ff56ad1d9e2cd6d3d38
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.ruoyi.procurementrecord.bean.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 Long salesLedgerProductId;
 
    /**
     * 出库类型 1-采购出库 2-销售出库 3-自定义
     */
    private Integer type;
 
    private Long productModelId;// 基础产品ID
 
}