22 lines
637 B
C#
22 lines
637 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CRM.Core.Model.EntityAudit
|
|
{
|
|
public class Wx_Order_PayClear
|
|
{
|
|
[Key]
|
|
public int Id { get; set; }
|
|
public int PayId { get; set; }
|
|
public int OrderId { get; set; }
|
|
public decimal PayPrice { get; set; }
|
|
public DateTime PayDate { get; set; }
|
|
public DateTime UseDate { get; set; }
|
|
public int UseStatus { get; set; }
|
|
public int UseType { get; set; }
|
|
public decimal UsePrice { get; set; }
|
|
public decimal UsePrice2 { get; set; }
|
|
public int Channel { get; set; }
|
|
}
|
|
}
|