111
王 垚
2022-12-24 3878611cba9734824ddc9cb205da396efbe2f487
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace WebAPI.Models
{
    public class SOPBill
    {
        public string HBillType { get; set; }   //单据类型
        public int HInterID { get; set; }   //主表主键ID
 
        public string HBillNo { get; set; }   //单据号
        public DateTime HDate { get; set; }   //日期
        public int HBillStatus { get; set; } //单据状态
        public string HRemark { get; set; }   //备注
        public string HName { get; set; }  //指导书名称
        public int HMaterID { get; set; }   //产品id
        public string HMaterNumber { get; set; }   //产品代码
        public int HMaterTypeID { get; set; } //物料分类内码  
        public string HMaterName { get; set; }   //产品名称
        public string HMaterModel { get; set; }   //规格型号
        public int HUnitID { get; set; } //单位id
        public string HUnitNumber { get; set; } //单位代码
        public string HUnitName { get; set; }   //计量单位
        public bool HStandard { get; set; }   //是否默认工艺
        public bool HUse { get; set; }   //是否使用
        public int HYear { get; set; } //会计年
        public int HPeriod { get; set; } //会计月
    }
}