15 lines
388 B
C#
15 lines
388 B
C#
using System;
|
|
|
|
namespace WX.CRM.DataSynFactory.Templates
|
|
{
|
|
public class Client_RefundContract
|
|
{
|
|
public string OrderId { get; set; }
|
|
public string HtId { get; set; }
|
|
public decimal RefundPrice { get; set; }
|
|
public DateTime? ContractTime { get; set; }
|
|
public string ContractKey { get; set; }
|
|
public int? type { get; set; }
|
|
}
|
|
}
|