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