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.

19 lines
382 B
C#

namespace EntrustSettle.Model.Dtos
{
/// <summary>
/// 账单申请Dto类
/// </summary>
public class ApplyBillDto
{
/// <summary>
/// 备注信息
/// </summary>
public string Remark { get; set; }
/// <summary>
/// 账单申请订单Id
/// </summary>
public long OrderId { get; set; }
}
}