27 lines
892 B
C#
27 lines
892 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.EntityAudit
|
|
{
|
|
[Table("WX_SzzyOrder_Redefine")]
|
|
public class WX_SzzyOrder_Redefine
|
|
{
|
|
[Key]
|
|
public decimal orderid { get; set; }
|
|
public string softusername { get; set; }
|
|
public int status { get; set; }
|
|
public string statusname { get; set; }
|
|
public DateTime? starttime { get; set; }
|
|
public DateTime? endtime { get; set; }
|
|
public string ordertype { get; set; }
|
|
public int midproductid { get; set; }
|
|
public int? channel { get; set; }
|
|
public decimal? arrivalpay { get; set; }
|
|
public decimal? opendays { get; set; }
|
|
public int? giftdays { get; set; }
|
|
public int xuhao { get; set; }
|
|
public DateTime? otime { get; set; }
|
|
}
|
|
}
|