|
|
@@ -0,0 +1,64 @@
|
|
|
+using Business.Models;
|
|
|
+using System;
|
|
|
+using System.Collections.Generic;
|
|
|
+using System.ComponentModel.DataAnnotations;
|
|
|
+using System.Globalization;
|
|
|
+using System.Linq;
|
|
|
+using System.Text;
|
|
|
+using System.Threading.Tasks;
|
|
|
+
|
|
|
+namespace Bussiness.Model.Tech
|
|
|
+{
|
|
|
+ /// <summary>
|
|
|
+ /// 工位表(工作中心)
|
|
|
+ /// </summary>
|
|
|
+ public class mes_workshop : BaseEntity
|
|
|
+ {
|
|
|
+ /// <summary>
|
|
|
+ /// 工位表主键
|
|
|
+ /// </summary>
|
|
|
+ [Key]
|
|
|
+ public long workshop_id { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 工位名称
|
|
|
+ /// </summary>
|
|
|
+ [StringLength(100)]
|
|
|
+ public string name { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 组合工位ids
|
|
|
+ /// </summary>
|
|
|
+ [StringLength(2000)]
|
|
|
+ public string subids { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 坐标
|
|
|
+ /// </summary>
|
|
|
+ [StringLength(100)]
|
|
|
+ public string geoinfo { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 楼栋
|
|
|
+ /// </summary>
|
|
|
+ [StringLength(100)]
|
|
|
+ public string building { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 楼层
|
|
|
+ /// </summary>
|
|
|
+ [StringLength(100)]
|
|
|
+ public string floor { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 区域
|
|
|
+ /// </summary>
|
|
|
+ [StringLength(100)]
|
|
|
+ public string zone { get; set; }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 工作日历id
|
|
|
+ /// </summary>
|
|
|
+ public long work_calendar_id { get; set; }
|
|
|
+ }
|
|
|
+}
|