using Magicodes.ExporterAndImporter.Core;
|
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
|
{
|
/// <summary>
|
/// 完成时间
|
/// </summary>
|
[ExporterHeader(DisplayName = "完成时间", IsIgnore = true)]
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "完成时间")]
|
public DateTime? FinishDate { get; set; } = DateTime.Now;
|
|
/// <summary>
|
/// 完成方式
|
/// </summary>
|
[ExporterHeader(DisplayName = "完成方式", IsIgnore =true)]
|
[SugarColumn(IsNullable = false, Length = 20, ColumnDescription = "完成方式")]
|
public int OperateType { get; set; }
|
}
|
}
|