1
huangxiaoqiang
2025-10-22 d4b0b578752a1478f6c11b352fbb8d2bad1f9e1d
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
30
31
32
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEA_DTO.Stock
{
    public class GenerateOutTaskDto
    {
        public int orderId { get; set; }
 
        public List<StockSelectViewDTO> stockViews { get; set; }
 
        public string TargetAddress { get; set; }
 
        public int AreaId { get; set; }
    }
 
    public class StockViewDTO
    {
        public string materielCode { get; set; }
 
        public string materielName { get; set; }
 
        public decimal useableQuantity { get; set; }
 
        public string palletCode { get; set; }
 
        public string locationCode { get; set; }
    }
}