36 lines
781 B
C#
36 lines
781 B
C#
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
namespace SA.Entity.zxdcrm_Models
|
|
{
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[SugarTable("wx_szzyorderpayext")]
|
|
public partial class WxSzzyorderpayext
|
|
{
|
|
public WxSzzyorderpayext(){
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true,ColumnName="orderid")]
|
|
public int Orderid {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
[SugarColumn(ColumnName="arrivalpay")]
|
|
public decimal? Arrivalpay {get;set;}
|
|
|
|
}
|
|
}
|