key1_beacon_api/ARW.Model/Dto/Business/OrderManage/OrderRefunds/OrderRefundAuditDto.cs

32 lines
711 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using ARW.Model.Models.Business.OrderManage.OrderRefunds;
namespace ARW.Model.Dto.Business.OrderManage.OrderRefunds
{
/// <summary>
/// 售后单记录表输入对象
///
/// @author lwh
/// @date 2023-10-17
/// </summary>
public class OrderRefundAuditDto
{
public int OrderRefundId { get; set; }
[Required(ErrorMessage = "售后单guid不能为空")]
public long OrderRefundGuid { get; set; }
public bool IsAgree { get; set; }
public string MerchantRefuseDesc { get; set; }
public long? ShopAddressGuid { get; set; }
}
}