using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace SA.Entity.zxdcrm_audit_Models
{
///
///
///
[SugarTable("sh_order")]
public class sh_order
{
///
///
///
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )]
public int id { get; set; }
///
///
///
[SugarColumn(ColumnName="gg_orderid" )]
public string gg_orderid { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="gg_orderno" )]
public string gg_orderno { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="gg_ordertype" )]
public string gg_ordertype { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="orderid" )]
public int? orderid { get; set; }
///
///
///
[SugarColumn(ColumnName="course" )]
public string course { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="refno" )]
public string refno { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="lectureruser" )]
public string lectureruser { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="lectureruserno" )]
public string lectureruserno { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="userno" )]
public string userno { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="user" )]
public string user { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="paytype" )]
public string paytype { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="payprice" )]
public decimal? payprice { get; set; }
///
///
///
[SugarColumn(ColumnName="trade_channel" )]
public string trade_channel { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="order_status" )]
public string order_status { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="trade_status" )]
public string trade_status { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="endtime" )]
public DateTime? endtime { get; set; }
///
///
///
[SugarColumn(ColumnName="opendays" )]
public int? opendays { get; set; }
///
///
///
[SugarColumn(ColumnName="remark" )]
public string remark { get; set; } ="";
///
///
///
[SugarColumn(ColumnName="trade_time" )]
public DateTime? trade_time { get; set; }
}
}