60 lines
1.7 KiB
C#
60 lines
1.7 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using SqlSugar;
|
||
namespace SA.Entity.zxdcrm_audit_Models
|
||
{
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarTable("q_orderchange")]
|
||
public class q_orderchange
|
||
{
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )]
|
||
public int id { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="orderid" )]
|
||
public int? orderid { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="depositid" )]
|
||
public int? depositid { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="channel" )]
|
||
public int? channel { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="status" )]
|
||
public int? status { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="scene" )]
|
||
public string scene { get; set; } ="";
|
||
/// <summary>
|
||
/// 1:新媒体二顶底之王;2:顶底之王后续升级订单(非顶底之王;3:9.9资源购买订单(排除购买顶底之王用户)
|
||
///</summary>
|
||
[SugarColumn(ColumnName="type" )]
|
||
public int? type { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="remark" )]
|
||
public string remark { get; set; } ="";
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="ctime" )]
|
||
public DateTime? ctime { get; set; }
|
||
}
|
||
}
|