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