48 lines
1.7 KiB
C#
48 lines
1.7 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
|
||
namespace WX.CRM.DataSynFactory.Templates
|
||
{
|
||
/// <summary>
|
||
/// 退款订单同步
|
||
/// </summary>
|
||
public class Client_RefundInfo
|
||
{
|
||
public int 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; }
|
||
public int? applytype { get; set; }
|
||
public int? deptid { get; set; }
|
||
public string deptName { get; set; }
|
||
public int? groupid { get; set; }
|
||
}
|
||
}
|