bus_sn_project_info_wms_detail.cs 1.72 KB
using System;
using System.Collections.Generic;
using Hh.Mes.POJO.Entity;
using SqlSugar;

namespace Hh.Mes.POJO.WebEntity.bus
{
    /// <summary>
    /// sn项目信息明细表 WMS推送
    /// </summary>
    [SugarTable("bus_sn_project_info_wms_detail")]
    public partial class bus_sn_project_info_wms_detail : base_Entity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int id { get; set; }

        [SugarColumn(IsNullable = true)]
        public Guid headKey { get; set; }

        /// <summary>
        /// SN号
        /// </summary>
        [SugarColumn(Length = 80, IsNullable = true)]
        public string sn { get; set; }

        /// <summary>
        /// 项目号或者工单号
        /// </summary>
        [SugarColumn(Length = 60, IsNullable = true)]
        public string correlatedCode { get; set; }

        /// <summary>
        /// 部件编码
        /// </summary>
        [SugarColumn(Length = 20, IsNullable = true)]
        public string partCode { get; set; }

        /// <summary>
        /// 申请人账号
        /// </summary>
        [SugarColumn(Length = 40, IsNullable = true)]
        public string userBy { get; set; }

        [SugarColumn(IsIgnore = true)]
        public List<Guid> headkeysList { get; set; }

        /// <summary>
        /// createTime
        /// </summary>
        [SugarColumn(ColumnDescription = "createTime", IsNullable = true)]
        public DateTime createTime { get; set; }

        /// <summary>
        /// createBy
        /// </summary>
        [SugarColumn(Length = 100, ColumnDescription = "createBy", IsNullable = true)]
        public string createBy { get; set; }

    }
}