using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace wcftest.sapEntity { public class excelHead { /// /// 生产订单 /// public string workCode { get; set; } /// /// 销售单号 /// public string saleCode { get; set; } /// /// 总套数 /// public int tatalQuantity { get; set; } /// /// 第几套 /// public string cequenceQuantity { get; set; } public excelHead() { } public excelHead(string work, string sale, int tatal, string cequence) { workCode = work; saleCode = sale; tatalQuantity = tatal; cequenceQuantity = cequence; } } }