| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- using Business.Core.Attributes;
- using Business.Model;
- using Microsoft.EntityFrameworkCore;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Business.Model.MES.IC
- {
- /// <summary>
- /// 物料替代多群组
- /// </summary>
- [CollectionName("dopbase", "ic_substitute_group")]
- [Comment("物料替代多群组")]
- public class ic_substitute_group : BaseEntity
- {
- /// <summary>
- /// 群组主键
- /// </summary>
- [Required]
- [Comment("群组主键")]
- public long substitute_group_id { get; set; }
- /// <summary>
- /// 群组代码
- /// </summary>
- [StringLength(20)]
- [Comment("群组代码")]
- public string? substitute_code { get; set; }
- /// <summary>
- /// 替代关系
- /// </summary>
- [StringLength(2000)]
- [Comment("替代关系")]
- public string? replace_relation { get; set; }
- /// <summary>
- /// 替代名称
- /// </summary>
- [StringLength(50)]
- [Comment("替代名称")]
- public string? replace_name { get; set; }
- /// <summary>
- /// 替代方式
- /// </summary>
- [StringLength(50)]
- [Comment("替代方式")]
- public string? replace_way { get; set; }
- /// <summary>
- /// 产品线
- /// </summary>
- [StringLength(50)]
- [Comment("产品线")]
- public string? product_line { get; set; }
- /// <summary>
- /// 使用机型
- /// </summary>
- [StringLength(5000)]
- [Comment("使用机型")]
- public string? use_model { get; set; }
- /// <summary>
- /// 群组优先级
- /// </summary>
- [Comment("群组优先级")]
- public int? order_num { get; set; }
- /// <summary>
- /// 主料/替代料
- /// </summary>
- [Comment("主料/替代料")]
- public int? main_material { get; set; }
- }
- }
|