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