81 lines
2.5 KiB
C#
81 lines
2.5 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using SqlSugar;
|
||
namespace SA.Entity.zxdcrm_audit_Models
|
||
{
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarTable("module_order_upgrad")]
|
||
public class module_order_upgrad
|
||
{
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )]
|
||
public int id { get; set; }
|
||
/// <summary>
|
||
/// 资源ID
|
||
///</summary>
|
||
[SugarColumn(ColumnName="new_resid" )]
|
||
public string new_resid { get; set; } ="";
|
||
/// <summary>
|
||
/// 软件用户名
|
||
///</summary>
|
||
[SugarColumn(ColumnName="new_username" )]
|
||
public string new_username { get; set; } ="";
|
||
/// <summary>
|
||
/// 新订单
|
||
///</summary>
|
||
[SugarColumn(ColumnName="new_orderid" )]
|
||
public int? new_orderid { get; set; }
|
||
/// <summary>
|
||
/// 新的资源id
|
||
///</summary>
|
||
[SugarColumn(ColumnName="new_szzyorderid" )]
|
||
public long? new_szzyorderid { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="new_otime" )]
|
||
public DateTime? new_otime { get; set; }
|
||
/// <summary>
|
||
/// 旧的资源ID
|
||
///</summary>
|
||
[SugarColumn(ColumnName="old_resid" )]
|
||
public string old_resid { get; set; } ="";
|
||
/// <summary>
|
||
/// 旧订单号
|
||
///</summary>
|
||
[SugarColumn(ColumnName="old_username" )]
|
||
public string old_username { get; set; } ="";
|
||
/// <summary>
|
||
/// 被升级订单ID
|
||
///</summary>
|
||
[SugarColumn(ColumnName="old_orderid" )]
|
||
public int? old_orderid { get; set; }
|
||
/// <summary>
|
||
/// 旧的资源id
|
||
///</summary>
|
||
[SugarColumn(ColumnName="old_szzyorderid" )]
|
||
public long? old_szzyorderid { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="old_otime" )]
|
||
public DateTime? old_otime { get; set; }
|
||
/// <summary>
|
||
/// 旧订单是否被关闭 0:没有关闭 1:关闭
|
||
///</summary>
|
||
[SugarColumn(ColumnName="isbeclose" )]
|
||
public int? isbeclose { get; set; }
|
||
/// <summary>
|
||
/// 0:默认,1:平台1
|
||
/// 默认值: 0
|
||
///</summary>
|
||
[SugarColumn(ColumnName="type" )]
|
||
public int? type { get; set; }
|
||
}
|
||
}
|