huminmin
12 小时以前 18480213c000dfd7f6f236903f965a4d3f254597
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.sales.vo;
 
import com.ruoyi.basic.dto.StorageBlobVO;
import com.ruoyi.sales.pojo.SalesLedger;
import lombok.Data;
 
import java.util.List;
 
@Data
public class SalesLedgerVo extends SalesLedger {
 
    private List<StorageBlobVO> storageBlobVOs;
 
    private String stockType;
}