using System.ComponentModel.DataAnnotations; using WTA.Shared.Attributes; using WTA.Shared.Domain; namespace WTA.Application.Identity.Entities.SystemManagement; [Order(9)] [SystemManagement] [Display(Name = "客户替换件关系")] public class TB_RePartsRelationship : BaseEntity { /// /// 取值字段【零件号】 /// [Display(Name = "零件号")] public string LU { set; get; } = null!; /// /// 取值字段【替换零件号】 /// [Display(Name = "替换零件号")] public string RepLU { set; get; } = null!; //取值字段【客户编码】 [Display(Name = "客户编码")] public string ClientCode { set; get; } = null!; [Display(Name = "业务类型")] public string BusinessType { set; get; } = null!; }