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