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 { /// /// 工序表 /// public class mes_process { /// /// 工序主键 /// [Key] public long proc_id { get; set; } /// /// 工序名称 /// [StringLength(100)] public string proc_name { get; set; } /// /// 是否需要排产 /// public int is_schedule { get; set; } /// /// 简述 /// [StringLength(500)] public string short_desc { get; set; } /// /// 详细描述 /// [StringLength(2000)] public string long_desc { get; set; } /// /// 组合工序id /// [StringLength(2000)] public string subids { get; set; } } }