yuan
2026-06-03 1853ed7e8e703060f0ce5f9438348e58e340b168
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.ruoyi.sales.dto;
 
import com.ruoyi.sales.pojo.ShippingInfo;
import lombok.Data;
 
import java.util.List;
 
//发货审批查看详情
@Data
public class ShippingApproveDto {
 
    private ShippingInfo shippingInfo;
 
    private List<ShippingProductDetailDto> shippingProductDetailDtoList;
}