新框架PDA后端(祈禧6月初版本)
南骏 池
2025-11-25 770f02888443c1be46549f164abfd3be78a3dbd3
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
namespace NewPdaSqlServer.Dto
{
    public class ErpKc
    {
        public string? FMaterialId { get; set; }
        public string? FStockId { get; set; }
        public string? FMtoNo { get; set; }
        public string? FLot { get; set; }
        public string? FStockUnitId { get; set; }
        public string? FBaseUnitId { get; set; }
        public string? FStockStatusId { get; set; }
        public string? FBASEQTY { get; set; }
        public string? FSTOREURNOM { get; set; }
        public string? FSTOREURNUM { get; set; }
        public string? FStockOrgId { get; set; }
    }
 
    public class ErpBom
    {
        public string? FITEMPPROPERTY { get; set; }
        public string? FMATERIALID { get; set; }
        public string? FITEMNAME { get; set; }
        public string? FENTRYID { get; set; }
        public string? FCHILDITEMNAME { get; set; }
        public string? FNUMERATOR { get; set; }
        public string? FDENOMINATOR { get; set; }
    }
}