48 lines
1.4 KiB
C#
48 lines
1.4 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
[Table("Module_Price_Upgrade")]
|
|
public class Module_Price_Upgrade
|
|
{
|
|
[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 decimal? 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; }
|
|
public int? isRunRefundIns { get; set; }
|
|
public int jiancount { get; set; }
|
|
public int useday { get; set; }
|
|
|
|
|
|
public int xuhao { get; set; }
|
|
|
|
public string type { get; set; }
|
|
|
|
public decimal? changePrice { get; set; }
|
|
|
|
/// <summary>
|
|
/// 目标订单号
|
|
/// </summary>
|
|
public int? targetOrderid { get; set; }
|
|
|
|
|
|
}
|
|
}
|