bus_workOrder_detail_operation.cs 1.62 KB
using Hh.Mes.POJO.Entity;
using SqlSugar;
using System;

namespace Hh.Mes.POJO.WebEntity.bus
{
    /// <summary>
    /// 工序操作记录
    /// </summary>
    [SugarTable("bus_workOrder_detail_operation")]
    public partial class bus_workOrder_detail_operation : base_Entity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int id { get; set; }

        /// <summary>
        /// 工单明细Id
        /// </summary>
        [SugarColumn(ColumnDescription = "工单明细Id", IsNullable = true)]
        public int busOrderDetail_Id { get; set; }

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

        /// <summary>
        /// 设备编号
        /// </summary>
        public string equipmentCode { get; set; }

        /// <summary>
        /// 设备名称
        /// </summary>
        public string EquipmentName { get; set; }

        /// <summary>
        /// 工位
        /// </summary>
        public string stationCode { get; set; }

        /// <summary>
        /// 工位名称
        /// </summary>
        public string StationName { get; set; }

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

        /// <summary>
        /// 结束时间
        /// </summary>
        public DateTime updateTime { get; set; }
    }
}