37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
|
|
[Table("xinmeiti2_pricechangehis")]
|
|
public class Xinmeiti2_PricechangeHis
|
|
{
|
|
[Key]
|
|
public int id { get; set; }
|
|
public int orderid { get; set; }
|
|
public int targetOrderid { get; set; }
|
|
public decimal oldPrice { get; set; }
|
|
public decimal changePrice { get; set; }
|
|
public decimal newPrice { get; set; }
|
|
public string type { get; set; }
|
|
public int channel { get; set; }
|
|
public int opendays { get; set; }
|
|
public int serviceday_2 { get; set; }
|
|
|
|
public string username { get; set; }
|
|
public string resid { get; set; }
|
|
public DateTime realstarttime_2 { get; set; }
|
|
public DateTime realendtime_2 { get; set; }
|
|
public DateTime otime { get; set; }
|
|
public DateTime? nextstartime { get; set; }
|
|
public long szzyorderid { get; set; }
|
|
public int midproductid { get; set; }
|
|
public DateTime? ctime { get; set; }
|
|
public string teacher { get; set; }
|
|
|
|
|
|
}
|
|
}
|