ComplianceServer/oldcode/Core.Model/EntityAudit/Wx_SzzyOrderPayExt.cs

19 lines
529 B
C#

using System;
using System.ComponentModel.DataAnnotations;
namespace CRM.Core.Model.EntityAudit
{
public class Wx_SzzyOrderPay_Ext
{
[Key]
public int OrderId { get; set; }
public decimal PayPrice { get; set; }
public decimal OrderPrice { get; set; }
public decimal CostPrice { get; set; }
public DateTime PayTime { get; set; }
public int Channel { get; set; }
public decimal? Rate { get; set; }
public decimal OverPayPrice { get; set; }
}
}