1
huanghongfeng
12 小时以前 b1c2dd1869a51b8f0e4acb9ddeb148f796db147f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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; }
    }
}