TG.WXCRM.V4/Model/DTO/OrderRefundView.cs

68 lines
2.2 KiB
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.Linq;
using System.Text;
using System.Threading.Tasks;
using WX.CRM.Model.Entity;
namespace WX.CRM.Model.DTO
{
public class OrderRefundView
{
public string resid { get; set; }
public string UMID { get; set; }
public DateTime? contracttime { get; set; }
public int? contractstatus { get; set; }
public string contractKey { get; set; }
public long id { 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 string refundtypename { get; set; }
public DateTime? refunddate { get; set; }
public string remark { get; set; }
public string att { get; set; }
public int auditstatus { get; set; }
public int? auditor { get; set; }
public string auditorname { get; set; }
public DateTime? audittime { get; set; }
public DateTime ctime { get; set; }
public string att2 { get; set; }
public string companycode { get; set; }
public int? channel { get; set; }
public int isdelete { get; set; }
public int ismorepay { get; set; }
public int? creator { get; set; }
public string creatorname { get; set; }
/// <summary>
/// 1需要实际退款 0退回可用余额不需要实际退款
/// </summary>
public int? isacturalrefund { get; set; }
public int isold { get; set; }
public string deptcode { get; set; }
/// <summary>
/// 申请类型
/// </summary>
public int? applytype { get; set; }
public int? deptid { get; set; }
public string deptName { get; set; }
public int? groupid { get; set; }
public string refund_payno { get; set; } = "";
public string refundreasontype { get; set; } = "";
public string retrace_refund_file { get; set; } = "";
public DateTime? customer_cancel_time { get; set; }
public string CompanyName { get; set; }
public int? innamelist { get; set; }
}
}