SACenter/SA.Entity/zxdcrm_audit_Models/QOrderchange.cs

60 lines
1.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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顶底之王后续升级订单(非顶底之王39.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; }
}
}