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.
30 lines
935 B
30 lines
935 B
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CK.SCP.Models.ScpEntity
|
|
{
|
|
|
|
public partial class TA_Appliance
|
|
{
|
|
|
|
[Key]
|
|
public long UID { get; set; }
|
|
public string PartCode { get; set; }
|
|
|
|
public string Model { get; set; }
|
|
public decimal? PackNumber { get; set;}
|
|
public string PartDesc1 { get; set; }
|
|
public string ReciteNumber { get; set; }
|
|
public string SufanLand { get; set; }
|
|
public string BoxType { get; set; }
|
|
public string PostEngineering { get; set; }
|
|
public string PartNumber { get; set; }
|
|
public string PartDesc2 { get; set; }
|
|
public string Texture { get; set; }
|
|
public string ReceivingPort { get; set; }
|
|
public string VendID { get; set; }
|
|
//供应商别名
|
|
public string OtherVendName { get; set; }
|
|
|
|
}
|
|
}
|
|
|