26 lines
787 B
C#
26 lines
787 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
[Table("Wx_SzzyOrderRefund_Frozen")]
|
|
public class Wx_SzzyOrderRefund_Frozen
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
public string resid { get; set; }
|
|
public decimal? orderid { get; set; }
|
|
public long? refundid { get; set; }
|
|
public int depositid { get; set; }
|
|
public decimal price { get; set; }
|
|
public DateTime? ctime { get; set; }
|
|
public int auditstatus { get; set; }
|
|
public int? auditor { get; set; }
|
|
public string auditorname { get; set; }
|
|
public DateTime? audittime { get; set; }
|
|
public int isdelete { get; set; }
|
|
|
|
}
|
|
}
|