huangxiaoqiang
7 小时以前 960b33fa24c47a330e51a2c24859d681ae62caeb
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
using WIDESEA_Core.DB.Models;
namespace WIDESEA_Model.Models
{
    /// <summary>
    /// 工艺路由
    ///</summary>
    [SugarTable("Dt_ProcessRoute")]
    public class Dt_ProcessRoute : BaseEntity
    {
        /// <summary>
        /// 备  注:区域ID
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "Id", IsPrimaryKey = true, IsIdentity = true)]
        public int Id { get; set; }
 
        /// <summary>
        /// 备  注:设备类型
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "stationType")]
        public int stationType { get; set; }
 
        /// <summary>
        /// 备  注:设备编码
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "stationCode")]
        public string stationCode { get; set; }
 
        /// <summary>
        /// 备  注:下一工艺
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "NextProcessCode")]
        public string? NextProcessCode { get; set; }
 
        /// <summary>
        /// 备  注:区域描述
        /// 默认值:
        ///</summary>
        [SugarColumn(ColumnName = "工艺时长")]
        public int? SpecialParameterDuration { get; set; }
    }
}