TG.WXCRM.V4/Model/MAP/RefundContractView.cs

23 lines
703 B
C#

using System;
namespace WX.CRM.Model.MAP
{
public class RefundContractView
{
public decimal OrderId { get; set; }
public string CName { get; set; }
public decimal RefundPrice { get; set; }
public DateTime RefundTime { get; set; }
public string Contract { get; set; }
public int? ContractStatus { get; set; }
public DateTime? ContractTime { get; set; }
public decimal? IsOpen { get; set; }
public DateTime? ArrivalTime { get; set; }
public string ORDERSTATUS { get; set; }
public string DEPTCODE { get; set; }
public string DEPTNAEM { get; set; }
public decimal Id { get; set; }
}
}