63 lines
1.8 KiB
C#
63 lines
1.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CRM.Core.DTO.Ord
|
|
{
|
|
public class OrderRefundDto
|
|
{
|
|
public int orderid { get; set; }
|
|
public decimal refundprice { get; set; }
|
|
public string account { get; set; }
|
|
public string username { get; set; }
|
|
public int refundtype { get; set; }
|
|
public DateTime? refunddate { get; set; }
|
|
public string remark { get; set; }
|
|
public string att { get; set; }
|
|
public string companycode { get; set; }
|
|
public int? creator { get; set; }
|
|
public string creatorname { get; set; }
|
|
public int? isacturalrefund { get; set; }
|
|
|
|
/// <summary>
|
|
/// 申请类型
|
|
/// </summary>
|
|
public int? applytype { get; set; }
|
|
|
|
public string RefundReasonType { get; set; } = "";
|
|
|
|
public string Retrace_refund_file { get; set; } = "";
|
|
|
|
|
|
|
|
}
|
|
|
|
public class RefundReasonType
|
|
{
|
|
public string TopType { get; set; } = string.Empty;
|
|
public List<string> Type { get; set; }
|
|
}
|
|
|
|
public class RefundDto
|
|
{
|
|
public string szzyorderid { get; set; }
|
|
public int? orderid { get; set; }
|
|
public decimal refundprice { get; set; }
|
|
public string account { get; set; }
|
|
public string username { get; set; }
|
|
public int refundtype { get; set; }
|
|
public int? channel { get; set; }
|
|
public string remark { get; set; }
|
|
public int? creator { get; set; }
|
|
public string creatorname { get; set; }
|
|
public int? isacturalrefund { get; set; }
|
|
}
|
|
|
|
public class RefundDeptDto
|
|
{
|
|
public int? deptid { get; set; }
|
|
public string deptName { get; set; }
|
|
public int? groupid { get; set; }
|
|
public int? channel { get; set; }
|
|
}
|
|
}
|