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.
22 lines
517 B
C#
22 lines
517 B
C#
namespace EntrustSettle.Model.Dtos
|
|
{
|
|
/// <summary>
|
|
/// 订单附件Dto
|
|
/// </summary>
|
|
public class AnnexDto
|
|
{
|
|
/// <summary>
|
|
/// 附件Id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
/// <summary>
|
|
/// 附件原始名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
/// <summary>
|
|
/// 附件类型 1:原始附件 2:反馈附件 3:账单 4:发票
|
|
/// </summary>
|
|
public int Type { get; set; }
|
|
}
|
|
}
|