using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace SA.Entity.zxdcrm_audit_Models { /// /// /// [SugarTable("check_deposit")] public class check_deposit { /// /// /// [SugarColumn(ColumnName="id" ,IsPrimaryKey = true )] public int id { get; set; } /// /// /// [SugarColumn(ColumnName="depositid" )] public int? depositid { get; set; } /// /// /// [SugarColumn(ColumnName="amount" )] public decimal? amount { get; set; } /// /// /// [SugarColumn(ColumnName="depositids" )] public string depositids { get; set; } =""; /// /// /// [SugarColumn(ColumnName="payamount" )] public decimal? payamount { get; set; } /// /// /// [SugarColumn(ColumnName="orderids" )] public string orderids { get; set; } =""; /// /// /// [SugarColumn(ColumnName="useamount" )] public decimal? useamount { get; set; } } }