40 lines
931 B
C#
40 lines
931 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Domain.Dto.OrderRefund
|
|
{
|
|
public class CreateOrderRefundRestoreDto
|
|
{
|
|
public int? Id { get; set; }
|
|
|
|
/// <summary>
|
|
/// 处理结果
|
|
/// </summary>
|
|
public OrderRefundComplianceResult? ComplianceResult { get; set; }
|
|
|
|
/// <summary>
|
|
/// 处理说明
|
|
/// </summary>
|
|
public string? ComplianceRemark { get; set; }
|
|
|
|
/// <summary>
|
|
/// 相关附件
|
|
/// </summary>
|
|
public string? Attachment { get; set; }
|
|
|
|
/// <summary>
|
|
/// 处理人
|
|
/// </summary>
|
|
public string? Operator { get; set; }
|
|
|
|
/// <summary>
|
|
/// 处理人id
|
|
/// </summary>
|
|
public int? OperatorEid { get; set; }
|
|
}
|
|
}
|