using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace SA.Entity.zxdcrm_audit_Models { /// /// /// [SugarTable("mon_finish")] public class mon_finish { /// /// /// [SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )] public int id { get; set; } /// /// 结算月份 /// [SugarColumn(ColumnName="month" )] public int? month { get; set; } /// /// 结算最后一天时间(导出使用) /// [SugarColumn(ColumnName="day" )] public DateTime? day { get; set; } /// /// 1:已结;0:未结 /// [SugarColumn(ColumnName="status" )] public int? status { get; set; } } }