using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace wcftest.sapEntity { public class wirteExcel { public excelHead head { get; set; } public List body { get; set; } public wirteExcel() { } public wirteExcel(excelHead heads,List bodys) { head = heads; body = bodys; } } }