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 CIQ_HZ_Merge { [Key] public long merge_Id { get; set; } [Required] [StringLength(50)] public string manualId { get; set; } [Required] [StringLength(50)] public string itemNo { get; set; } [Required] [StringLength(50)] public string itemType { get; set; } [Required] [StringLength(50)] public string sourceNo { get; set; } [Required] [StringLength(50)] public string goodsName { get; set; } [Required] [StringLength(50)] public string goodsNo { get; set; } public string goodsSpec { get; set; } [Required] [StringLength(50)] public string currencyType { get; set; } [Required] [StringLength(50)] public string declareUnit { get; set; } [StringLength(50)] public string useFlag { get; set; } [Required] [StringLength(50)] public string actionType { get; set; } [Required] [StringLength(50)] public string unit1 { get; set; } [StringLength(50)] public string unit2 { get; set; } 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; } [StringLength(50)] public string InterfaceStatus { get; set; } public DateTime? PushDate { get; set; } [StringLength(50)] public string PushUser { get; set; } public long? Product_Id { get; set; } [StringLength(50)] public string ProductCode { get; set; } [StringLength(500)] public string ProductName { get; set; } [StringLength(300)] public string ProductModel { get; set; } [StringLength(50)] public string BigUnit { get; set; } [StringLength(50)] public string MiddleUnit { get; set; } [StringLength(50)] public string SmallUnit { get; set; } public string ExpandFields { get; set; } } }