base_work_center_station.cs
703 Bytes
using System;
using SqlSugar;
namespace Hh.Mes.POJO.Entity
{
[SugarTable("base_work_center_station_rel")]
public partial class base_work_center_station_rel
{
/// <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; }
}
}