using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using XYY.Core.Standard; namespace XYY.Model.Standard.Charging { public class Finance_Charge_Log : BaseEntity { /// /// 客户 /// public int CustomerId { get; set; } /// /// 业务号码 /// public string BillNo { get; set; } public int ExpressId { get; set; } public string TrackingNumber { get; set; } public string Json { get; set; } public string ErrorMessage { get; set; } public bool Success { get; set; } } }