bus_pipe_modfiy_Info.cs 2.56 KB
using System;
using SqlSugar;

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

        /// <summary>
        /// 工单code 生产订单号
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "工单code 生产订单号", IsNullable = false)]
        public string workOrderCode { get; set; }

        /// <summary>
        /// 产线 小经:line1 中1:line2 中2:line3 大经:line4
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "产线 小经:line1 中1:line2 中2:line3 大经:line4", IsNullable = false)]
        public string lineCode { get; set; }

        /// <summary>
        /// 工件编码
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "工件编码", IsNullable = false)]
        public string workPieceNo { get; set; }

        /// <summary>
        /// 管件号
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "管件号", IsNullable = false)]
        public string pipePartsNo { get; set; }

        /// <summary>
        /// 0 接口传输,1 界面手工操作
        /// </summary>
        [SugarColumn(ColumnDescription = "0 接口传输,1 界面手工操作", IsNullable = false)]
        public int type { get; set; }

        /// <summary>
        /// 操作人员
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "操作人员", IsNullable = false)]
        public string createBy { get; set; }

        /// <summary>
        /// 操作时间
        /// </summary>
        [SugarColumn(ColumnDescription = "操作时间", IsNullable = false)]
        public DateTime createTime { get; set; }

        /// <summary>
        /// 更新时间
        /// </summary>
        [SugarColumn(ColumnDescription = "更新时间", IsNullable = true)]
        public DateTime updateTime { get; set; }

        /// <summary>
        /// 更新人员
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "更新人员", IsNullable = true)]
        public string updateby { get; set; }

        /// <summary>
        /// 内容
        /// </summary>
        [SugarColumn(Length = 5000, ColumnDescription = "内容", IsNullable = true)]
        public string content { get; set; }

    }
}