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