44 lines
1.3 KiB
C#
44 lines
1.3 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
[Table("Module_Order")]
|
|
public class Module_Order
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
public string username { get; set; }
|
|
public string moduleid { get; set; }
|
|
public string szzyorderid { get; set; }
|
|
public string productcode2 { get; set; }
|
|
public DateTime? starttime2 { get; set; }
|
|
public DateTime? endtime2 { get; set; }
|
|
public int? usedays { get; set; }
|
|
public string subproductname2 { get; set; }
|
|
public int? opendays2 { get; set; }
|
|
public decimal? price2 { get; set; }
|
|
public DateTime? ctime2 { get; set; }
|
|
public DateTime? otime2 { get; set; }
|
|
public int? channel2 { get; set; }
|
|
|
|
[NotMapped]
|
|
public decimal? arrivalpay { get; set; }
|
|
[NotMapped]
|
|
public int xuhao { get; set; }
|
|
[NotMapped]
|
|
public int? orderid { get; set; }
|
|
[NotMapped]
|
|
public int? midproductid { get; set; }
|
|
/// <summary>
|
|
/// 主ID
|
|
/// </summary>
|
|
public string MainSzzyorderid { get; set; }
|
|
|
|
public decimal? orderPrice { get; set; }
|
|
|
|
|
|
}
|
|
}
|