using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core.DB.Models; namespace WIDESEA_Model.Models { [SugarTable(nameof(Dt_InWheels_mes_hty), "MES车轮历史信息")] public class Dt_InWheels_mes_hty : Dt_InWheels_mes { /// /// 完成时间 /// [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "完成时间")] public DateTime? FinishDate { get; set; } = DateTime.Now; /// /// 完成方式 /// [SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "完成方式")] public int OperateType { get; set; } } }