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 Base_ProductType_Specification
|
{
|
[Key]
|
public long TypeSpecRelation_Id { get; set; }
|
|
public long Type_Id { get; set; }
|
|
[StringLength(100)]
|
public string TypeName { get; set; }
|
|
public long Specification_Id { get; set; }
|
|
[StringLength(800)]
|
public string SpecificationName { get; set; }
|
|
[StringLength(50)]
|
public string SpecRelationType { get; set; }
|
|
[StringLength(4000)]
|
public string FullType_Id { get; set; }
|
|
[StringLength(4000)]
|
public string FullTypeName { get; set; }
|
|
[StringLength(50)]
|
public string InputMode { get; set; }
|
|
public string InputRemark { get; set; }
|
|
public byte? IsMust { get; set; }
|
|
public byte? IsSearch { get; set; }
|
|
public int? OrderNo { get; set; }
|
|
public int? Enable { 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 byte? IsEditValue { get; set; }
|
|
public byte? IsAlias { get; set; }
|
|
public string ExpandFields { get; set; }
|
}
|
}
|