read_equipmentinformation_ecs.cs 1.98 KB
using Hh.Mes.POJO.Entity;
using SqlSugar;
using System;

namespace Hh.Mes.POJO.WebEntity
{
    [SugarTable("read_equipmentinformation_ecs")]
    public partial class read_equipmentinformation_ecs : base_Entity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public string id { get; set; }

        [SugarColumn(IsNullable = true)]
        public int equipmentId { get; set; }

        [SugarColumn(IsNullable = true)]
        public int equipmentTypeTemplateId { get; set; }

        /// <summary>
        /// 属性编号
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string equipmentTypeTemplateCode { get; set; }

        [SugarColumn(Length = 50, IsNullable = true)]
        public string informationValue { get; set; }

        [SugarColumn(Length = 50, IsNullable = true)]
        public string remark { get; set; }

        [SugarColumn(IsNullable = true)]
        public DateTime createTime { get; set; }

        [SugarColumn(Length = 50, IsNullable = true)]
        public string createBy { get; set; }

        [SugarColumn(IsNullable = true)]
        public int isSend { get; set; }

        [SugarColumn(Length = 50, IsNullable = true)]
        public string equipmentCode { get; set; }

        [SugarColumn(Length = 50, IsNullable = true)]
        public string stationCode { get; set; }

        /// <summary>
        /// 任务号,对应工序明细Id
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string taskNo { get; set; }

        [SugarColumn(Length = 50, IsNullable = true)]
        public string equipmentTypeTemplateName { get; set; }

        [SugarColumn(Length = 255, IsNullable = true)]
        public string equipmentName { get; set; }

        /// <summary>
        /// 焊接层
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string count { get; set; }

    }
}