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; }
///
/// 申请类型
///
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 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; }
}
}