1
zrg
22 小时以前 41e5436d8a03b7e3f3412dad1e4b040043ba7b3f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
 
namespace WebAPI.Models
{
    public class GroupOrderBill
    {
        public long HInterID { get; set; }
        public string HBillNo { get; set; }
        public string HMaker { get; set; }
        public string HBatchNo { get; set; }//入库批次
        public string HBarCode_Cus { get; set; }//客户标签(黑标号)
        public long HOrgID { get; set; }
        //public int HYear { get; set; }
        //public double HPeriod { get; set; }
        //public DateTime HStationInTime { get; set; }
    }
}