base_work_center_station.cs 695 Bytes
using System;
using SqlSugar;

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

        /// <summary>
        /// 工作中心编码
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string workCenterCode { get; set; }

        /// <summary>
        /// 工位编码
        /// </summary>
        [SugarColumn(Length = 50, IsNullable = true)]
        public string workStationCode { get; set; }

    }
}