using Business.Core.Attributes;
using Business.Model;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
namespace Bussiness.Model.Tech
{
///
/// 工位关联线边仓表
///
[CollectionName("dopbase", "mes_workshop_shelf")]
public class mes_workshop_shelf : BaseEntity
{
/////
///// 主键
/////
//[Key]
//[Description("主键")]
//public long workshop_shelf_id { get; set; }
///
/// 工位id
///
[Required]
[Description("工位id")]
public long? workshop_id { get; set; }
///
/// 线边仓序列号
///
[Description("线边仓序列号")]
public int? serialno { get; set; }
///
/// 仓库编号
///
[StringLength(100)]
[Description("仓库编号")]
public string? sheifno { get; set; }
///
/// 坐标
///
[StringLength(100)]
[Description("坐标")]
public string? geoinfo { get; set; }
}
}