using System; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using Volo.Abp.Domain.Entities; using Volo.Abp.MultiTenancy; namespace Win_in.Sfs.Scp.v1.Domain { public class TA_PART:Entity,IMultiTenant { public string PartCode { get; set; } public string ErpPartCode { get; set; } public string PartDesc1 { get; set; } public string PartDesc2 { get; set; } public string ProjectId { get; set; } public string Unit { get; set; } public string PartGroup { get; set; } public string State { get; set; } public string Configuration { get; set; } public int ValidityDays { get; set; } public string ReceivePort { get; set; } public string PalletSize { get; set; } public string Remark { get; set; } public string Site { get; set; } public string Qlevel { get; set; } public bool? Ischeck { get; set; } public Guid? TenantId { get; set; } } }