王 垚
2022-09-05 226dd2b152c0fb06b3f8108ac7740216a8a453c6
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 Demo.Model.Infrastructure;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace Demo.Model.Entity.SCM
{
    public class SAL_SaleOrder : IBillHead
    {
        public long FSaleOrgId { get; set; }
        public DateTime FDate { get; set; }
        public string FBillNo { get; set; }
        public string FBillTypeID { get; set; }
        public long FCreatorId { get; set; }
        public DateTime FCreateDate { get; set; }
        public long FModifierId { get; set; }
        public DateTime FModifyDate { get; set; }
        public long FApproverId { get; set; }
        public DateTime FApproveDate { get; set; }
        public string FDocumentStatus { get; set; }
    }
 
    public class SAL_SaleOrderEntry : IBillEntry
    {
        public string FMaterialId { get; set; }
        public string FStockId { get; set; }
        public decimal FQty { get; set; }
        public decimal FPrice { get; set; }
    }
}