40 lines
1.4 KiB
C#
40 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace WX.CRM.DataSynFactory.Templates
|
|
{
|
|
public class Client_RefundOrderAdd
|
|
{
|
|
public decimal ID { get; set; }
|
|
public decimal? SID { get; set; }
|
|
public decimal ORDERID { get; set; }
|
|
public decimal REFUNDPRICE { get; set; }
|
|
public string ACCOUNT { get; set; }
|
|
public string USERNAME { get; set; }
|
|
public decimal REFUNDTYPE { get; set; }
|
|
public string REFUNDTYPENAME { get; set; }
|
|
public DateTime? REFUNDDATE { get; set; }
|
|
public string REMARK { get; set; }
|
|
public string ATT { get; set; }
|
|
public decimal AUDITSTATUS { get; set; }
|
|
public decimal? 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 decimal? ISDELETE { get; set; }
|
|
public decimal? CREATOR { get; set; }
|
|
public string CREATORNAME { get; set; }
|
|
public decimal? ISACTURALREFUND { get; set; }
|
|
public string DEPTCODE { get; set; }
|
|
public decimal? APPLYTYPE { get; set; }
|
|
public int? DEPTID { get; set; }
|
|
public string DEPTNAME { get; set; }
|
|
public int? GROUPID { get; set; }
|
|
}
|
|
}
|