29 lines
987 B
C#
29 lines
987 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
public class Wx_SzzyOrderModuleRefund
|
|
{
|
|
[Key]
|
|
public int priid { get; set; }
|
|
public int? id { get; set; }
|
|
public int? orderid { get; set; }
|
|
public string username { get; set; }
|
|
public DateTime refunddate { get; set; }
|
|
public decimal refundprice { get; set; }
|
|
public string midproductid { get; set; }
|
|
public string moduleid { get; set; }
|
|
public string szzyorderid { get; set; }
|
|
public int? ismorepay { get; set; }
|
|
public int? restday { get; set; }
|
|
public int module_openday { get; set; }
|
|
public decimal module_arrivalpay { get; set; }
|
|
public decimal module_refundprice { get; set; }
|
|
public DateTime otime2 { get; set; }
|
|
public int? is_order { get; set; }
|
|
public int channel { get; set; }
|
|
public int? isoneday { get; set; }
|
|
}
|
|
}
|