using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.Check.Dtos { /// /// 自动对账Excel导入实体 /// public class CheckBillAutoExcelReq { public string 提单号 { get; set; } public decimal RMB金额 { get; set; } public decimal USD金额 { get; set; } } }