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

28 lines
797 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CRM.Core.Model.Entity
{
[Table("Wx_SzzyOrderPayExt")]
public class Wx_SzzyOrderPayExt
{
[Key]
public int orderid { get; set; }
public decimal? arrivalpay { get; set; }
}
[Table("Wx_SzzyOrderPay_Ext")]
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; }
}
}