| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- using Business.Core.Attributes;
- using Microsoft.EntityFrameworkCore;
- using System.ComponentModel.DataAnnotations;
- namespace Business.Domain
- {
- /// <summary>
- /// 工位表(工作中心)
- /// </summary>
- [CollectionName("dopbase", "mes_workshop")]
- [Comment("工位表(工作中心)")]
- public class mes_workshop : BaseEntity
- {
- ///// <summary>
- ///// 工位表主键
- ///// </summary>
- //[Key]
- //[Comment("工位表主键")]
- //public long workshop_id { get; set; }
- /// <summary>
- /// 工位名称
- /// </summary>
- [StringLength(100)]
- [Comment("工位名称")]
- public string name { get; set; }
- /// <summary>
- /// 组合工位ids
- /// </summary>
- [StringLength(2000)]
- [Comment("组合工位ids")]
- public string subids { get; set; }
- /// <summary>
- /// 坐标
- /// </summary>
- [StringLength(100)]
- [Comment("坐标")]
- public string geoinfo { get; set; }
- /// <summary>
- /// 楼栋
- /// </summary>
- [StringLength(100)]
- [Comment("楼栋")]
- public string building { get; set; }
- /// <summary>
- /// 楼层
- /// </summary>
- [StringLength(100)]
- [Comment("楼层")]
- public string floor { get; set; }
- /// <summary>
- /// 区域
- /// </summary>
- [StringLength(100)]
- [Comment("区域")]
- public string zone { get; set; }
- /// <summary>
- /// 工作日历id
- /// </summary>
- [Comment("工作日历id")]
- public long? work_calendar_id { get; set; }
- }
- }
|