You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
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
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// 取值字段【零件号】
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "零件号")]
|
|
|
|
public string LU { set; get; } = null!;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// 取值字段【替换零件号】
|
|
|
|
/// </summary>
|
|
|
|
[Display(Name = "替换零件号")]
|
|
|
|
public string RepLU { set; get; } = null!;
|
|
|
|
//取值字段【客户编码】
|
|
|
|
|
|
|
|
[Display(Name = "客户编码")]
|
|
|
|
public string ClientCode { set; get; } = null!;
|
|
|
|
[Display(Name = "业务类型")]
|
|
|
|
public string BusinessType { set; get; } = null!;
|
|
|
|
}
|