namespace Myshipping.Application.Service.MonthlyPayAccount.Dto { public class MonthlyPayAccountDto { public long? Id { get; set; } /// /// 月结户头 /// public string Account { get; set; } /// /// 月结卡号 /// public string CardNo { get; set; } } }