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