using System;
using System.Collections.Generic;
using System.ComponentModel;
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]
[Description("工序主键")]
public long proc_id { get; set; }
///
/// 工序名称
///
[Required]
[StringLength(100)]
[Description("工序名称")]
public string proc_name { get; set; }
///
/// 简述
///
[StringLength(500)]
[Description("简述")]
public string? short_desc { get; set; }
///
/// 详细描述
///
[StringLength(2000)]
[Description("详细描述")]
public string? long_desc { get; set; }
///
/// 组合工序id
///
[StringLength(2000)]
[Description("组合工序id")]
public string? subids { get; set; }
}
}