namespace wcftest.orm
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class TMS_ProductInfo_Port
|
{
|
[Key]
|
public long PortProduct_Id { get; set; }
|
|
public int Port_Id { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string PortName { get; set; }
|
|
public long Product_Id { get; set; }
|
|
[StringLength(50)]
|
public string PorPortCode { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string ProductCode { get; set; }
|
|
[Required]
|
[StringLength(500)]
|
public string ProductName { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string ProductModel { get; set; }
|
|
[StringLength(500)]
|
public string CIQNameCn { get; set; }
|
|
[StringLength(500)]
|
public string CIQName { get; set; }
|
|
[StringLength(50)]
|
public string SimpleCIQName { get; set; }
|
|
[StringLength(50)]
|
public string TypeName { get; set; }
|
|
[StringLength(50)]
|
public string EnglishType { get; set; }
|
|
[StringLength(50)]
|
public string ProductSpec { get; set; }
|
|
public int? Brand_Id { get; set; }
|
|
[StringLength(50)]
|
public string BrandName { get; set; }
|
|
[StringLength(50)]
|
public string OriginPlace { get; set; }
|
|
[StringLength(50)]
|
public string PlaceCode { get; set; }
|
|
public decimal? NetWeight { get; set; }
|
|
public decimal? Weight { get; set; }
|
|
[StringLength(50)]
|
public string PostMailCode { get; set; }
|
|
[StringLength(50)]
|
public string HSCode { get; set; }
|
|
public decimal? DeclareQuantityOrder { get; set; }
|
|
[StringLength(50)]
|
public string DeclareUnit { get; set; }
|
|
[Column(TypeName = "money")]
|
public decimal? DeclarePrice { get; set; }
|
|
[StringLength(50)]
|
public string DeclareCurrency { get; set; }
|
|
[StringLength(50)]
|
public string BEDeclareCurrency { get; set; }
|
|
[StringLength(50)]
|
public string StatutoryUnit1 { get; set; }
|
|
public decimal? StatutoryQty1 { get; set; }
|
|
[StringLength(50)]
|
public string StatutoryUnit2 { get; set; }
|
|
public decimal? StatutoryQty2 { get; set; }
|
|
[StringLength(50)]
|
public string BondedDeclareUnit { get; set; }
|
|
[StringLength(50)]
|
public string CIQProductModel { get; set; }
|
|
[StringLength(50)]
|
public string RecordCode { get; set; }
|
|
[StringLength(50)]
|
public string Manufacturer { get; set; }
|
|
[StringLength(50)]
|
public string Composition { get; set; }
|
|
[StringLength(50)]
|
public string Usage { get; set; }
|
|
[StringLength(50)]
|
public string Remark { get; set; }
|
|
public int? CreateID { get; set; }
|
|
[StringLength(50)]
|
public string Creator { get; set; }
|
|
public DateTime? CreateDate { get; set; }
|
|
public int? ModifyID { get; set; }
|
|
[StringLength(50)]
|
public string Modifier { get; set; }
|
|
public DateTime? ModifyDate { get; set; }
|
|
public int? PlatUser_Id { get; set; }
|
|
[StringLength(50)]
|
public string PlatUserCode { get; set; }
|
|
[StringLength(50)]
|
public string PlatUserName { get; set; }
|
|
[StringLength(50)]
|
public string PlatCorpName { get; set; }
|
|
public int? UserProduct_Id { get; set; }
|
|
[StringLength(50)]
|
public string UserProductCode { get; set; }
|
|
[StringLength(100)]
|
public string UserProductAlias { get; set; }
|
|
[StringLength(50)]
|
public string ExtendField01 { get; set; }
|
|
[StringLength(50)]
|
public string ExtendField02 { get; set; }
|
|
[StringLength(50)]
|
public string ExtendField03 { get; set; }
|
|
[StringLength(50)]
|
public string ExtendField04 { get; set; }
|
|
[StringLength(50)]
|
public string ExtendField05 { get; set; }
|
|
[StringLength(50)]
|
public string ExtendField06 { get; set; }
|
|
[StringLength(50)]
|
public string ExtendField07 { get; set; }
|
|
[StringLength(50)]
|
public string ExtendField08 { get; set; }
|
|
[StringLength(50)]
|
public string ExtendField09 { get; set; }
|
|
[StringLength(50)]
|
public string ExtendField10 { get; set; }
|
|
public int? Type_Id { get; set; }
|
|
public string FullType_Id { get; set; }
|
|
public string FullTypeName { get; set; }
|
|
public string ExpandFields { get; set; }
|
}
|
}
|