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.
47 lines
1.0 KiB
47 lines
1.0 KiB
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<long>,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; }
|
|
}
|
|
}
|