| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- using Business.Core.Attributes;
- using Business.Model;
- using Microsoft.EntityFrameworkCore;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- namespace Business.Model.Tech
- {
- /// <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; }
- }
- }
|