| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ShwasherSys.Common.Dto
- {
- public class OrderSendItemExcelDto
- {
- public int Index { get; set; }
- public string StockNo { get; set; }
- public string PartNo { get; set; }
- public string ProductName { get; set; }
- public string Model { get; set; }
- public string SurfaceColor { get; set; }
- public string Material { get; set; }
- public string Rigidity { get; set; }
- public string Unit { get; set; }
- //发送数量
- public decimal SendQuantity { get; set; }
- //包数
- public decimal PackageCount { get; set; }
- //每包数量
- public decimal QuantityPerPack { get; set; }
- //剩余数量
- public decimal Sysl { get; set; }
- public decimal Price { get; set; }
- public decimal TotalPrice { get; set; }
- public string ProductBatchNum { get; set; }
-
- }
- public class OrderSendMiniExcelDto
- {
- //日期 yyyy-MM-dd
- public string Ex1 { get; set; }
- //日期 yyyy年MM月dd日
- public string Ex2 { get; set; }
- public string Ex3 { get; set; }
- public decimal AllPackageCount { get; set; }
- public decimal AllSendQuantity { get; set; }
- public decimal AllTotalPrice { get; set; }
- public string OrderSendBillNo { get; set; }
- public string CustomerName { get; set; }
- public string SendAddress { get; set; }
- public string ContactTels { get; set; }
- public string ContactMan { get; set; }
- //excel中特殊地方显示不同格式
- public string SendDate { get; set; }
- public List<OrderSendItemExcelDto> send { get; set; }
- }
- }
|