180 lines
5.1 KiB
C#
180 lines
5.1 KiB
C#
using System;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using SqlSugar;
|
||
|
||
namespace SA.Entity.zxdcrm_Models
|
||
{
|
||
///<summary>
|
||
///
|
||
///</summary>
|
||
[SugarTable("module_order")]
|
||
public partial class ModuleOrder
|
||
{
|
||
public ModuleOrder(){
|
||
|
||
|
||
}
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:False
|
||
/// </summary>
|
||
[SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")]
|
||
public int Id {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="username")]
|
||
public string? Username {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:0
|
||
/// Nullable:False
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="moduleid")]
|
||
public string Moduleid {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:False
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="szzyorderid")]
|
||
public string Szzyorderid {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:False
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="productcode2")]
|
||
public string Productcode2 {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="starttime2")]
|
||
public DateTime? Starttime2 {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="endtime2")]
|
||
public DateTime? Endtime2 {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="usedays")]
|
||
public int? Usedays {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:产品名称
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="subproductname2")]
|
||
public string? Subproductname2 {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="opendays2")]
|
||
public int? Opendays2 {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:开通(天)
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="totaldays")]
|
||
public int? Totaldays {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="price2")]
|
||
public decimal? Price2 {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="ctime2")]
|
||
public DateTime? Ctime2 {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="otime2")]
|
||
public DateTime? Otime2 {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="channel2")]
|
||
public int? Channel2 {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:订单状态:新订单180、已开通220、已停用/已退款90、已过期80、已取消70,去掉"已支付200、暂缓开通210"状态
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="status2")]
|
||
public short? Status2 {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:退款状态(0-默认、1-已退款),为兼容客服系统
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="isrefund")]
|
||
public byte? Isrefund {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="canceluser")]
|
||
public string? Canceluser {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="canceltime")]
|
||
public DateTime? Canceltime {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="returnPrice")]
|
||
public decimal? ReturnPrice {get;set;}
|
||
|
||
}
|
||
}
|