You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
387 B
C#

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