33 lines
1.1 KiB
C#
33 lines
1.1 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
[Table("Module_Price")]
|
|
public class Module_Price
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
public int? orderid { get; set; }
|
|
public string szzyorderid { get; set; }
|
|
public string moduleid { get; set; }
|
|
public DateTime? starttime2 { get; set; }
|
|
public DateTime? endtime2 { get; set; }
|
|
public DateTime? otime2 { get; set; }
|
|
public DateTime? ctime2 { get; set; }
|
|
public decimal? orderPrice { get; set; }
|
|
public double? modulePrice { get; set; }
|
|
public int? midproductid { get; set; }
|
|
public string username { get; set; }
|
|
public int? opendays2 { get; set; }
|
|
public int? isBu { get; set; }
|
|
public int? isoneday { get; set; }
|
|
public int? channel { get; set; }
|
|
public decimal? modulePrice2 { get; set; }
|
|
//public int ? isVirOrder { get; set; }
|
|
[NotMapped]
|
|
public int xuhao { get; set; }
|
|
}
|
|
}
|