bus_workOrder_statistics.cs 1.84 KB
using System;
using SqlSugar;
using System.ComponentModel.DataAnnotations.Schema;

namespace Hh.Mes.POJO.Entity
{
    public partial class bus_workOrder_statistics
    {
        ///// <summary>
        ///// 产线Code
        ///// </summary>
        //[SugarColumn(Length = 40, ColumnDescription = "产线Code", IsNullable = true)]
        //public string lineCode { get; set; }

        /// <summary>
        /// 工位code
        /// </summary>
        [SugarColumn(Length = 40, ColumnDescription = "工位code", IsNullable = true)]
        public string stationCode { get; set; }

        ///// <summary>
        ///// 工序code
        ///// </summary>
        //[SugarColumn(Length = 40, ColumnDescription = "工序code", IsNullable = true)]
        //public string oprSequenceCode { get; set; }

        ///// <summary>
        ///// 工序名称
        ///// </summary>
        //[SugarColumn(Length = 40, ColumnDescription = "工序名称", IsNullable = true)]
        //public string oprSequenceName { get; set; }

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


        [SugarColumn(Length = 50, ColumnDescription = "班组", IsNullable = true)]
        public string teamCode { get; set; }

        [SugarColumn(Length = 50, ColumnDescription = "人员", IsNullable = true)]
        public string userId { get; set; }

        [SugarColumn(Length = 50, ColumnDescription = "工作中心", IsNullable = true)]
        public string workCenterCode { get; set; }

        /// <summary>
        /// 工序任务数
        /// </summary>
        public int sequenceCount { get; set; }

        /// <summary>
        /// 未做
        /// </summary>
        public int notDoneCount { get; set; }

        /// <summary>
        /// 比例
        /// </summary>
        public int ratio { get; set; }
    }
}