using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace SA.Entity.zxdcrm_audit_Models { /// /// /// [SugarTable("audit_cost")] public class audit_cost { /// /// /// [SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )] public int id { get; set; } /// /// /// [SugarColumn(ColumnName="orderid" )] public int? orderid { get; set; } /// /// /// [SugarColumn(ColumnName="cost" )] public decimal? cost { get; set; } /// /// /// [SugarColumn(ColumnName="ctime" )] public DateTime? ctime { get; set; } } }