66 lines
1.8 KiB
C#
66 lines
1.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using SqlSugar;
|
|
namespace SA.Entity.zxdcrm_audit_Models
|
|
{
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarTable("wx_szzyorderpay_ext")]
|
|
public class wx_szzyorderpay_ext
|
|
{
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName="orderid" ,IsPrimaryKey = true )]
|
|
public int orderid { get; set; }
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName="payprice" )]
|
|
public decimal? payprice { get; set; }
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName="orderprice" )]
|
|
public decimal? orderprice { get; set; }
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName="costprice" )]
|
|
public decimal? costprice { get; set; }
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName="paytime" )]
|
|
public DateTime? paytime { get; set; }
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName="channel" )]
|
|
public int? channel { get; set; }
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName="rate" )]
|
|
public decimal? rate { get; set; }
|
|
/// <summary>
|
|
///
|
|
/// 默认值: 0.0000
|
|
///</summary>
|
|
[SugarColumn(ColumnName="overpayprice" )]
|
|
public decimal? overpayprice { get; set; }
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName="realpayprice" )]
|
|
public decimal? realpayprice { get; set; }
|
|
/// <summary>
|
|
///
|
|
///</summary>
|
|
[SugarColumn(ColumnName="otime" )]
|
|
public DateTime? otime { get; set; }
|
|
}
|
|
}
|