27 lines
529 B
C#
27 lines
529 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Domain.Dto
|
|
{
|
|
public class ContractAuditDto
|
|
{
|
|
/// <summary>
|
|
/// 订单号
|
|
/// </summary>
|
|
public int? OrderId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 审核状态
|
|
/// </summary>
|
|
public int? Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
public string? Remark { get; set; }
|
|
}
|
|
}
|