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_ImageConfig
|
{
|
[Key]
|
public int Config_Id { get; set; }
|
|
public int? BigType_Id { get; set; }
|
|
[StringLength(100)]
|
public string BigTypeName { get; set; }
|
|
public int? Width { get; set; }
|
|
public int? Height { get; set; }
|
|
[StringLength(200)]
|
public string Path { get; set; }
|
|
[StringLength(200)]
|
public string FileFormat { get; set; }
|
|
public byte? IsScale { get; set; }
|
|
public string Remark { get; set; }
|
|
public int? PicFormatNo { get; set; }
|
|
public int? OrderNo { get; set; }
|
|
public string Remark1 { get; set; }
|
|
public int CreateID { get; set; }
|
|
[Required]
|
[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 DeleteBy { get; set; }
|
|
public byte? Enable { get; set; }
|
|
public string ExpandFields { get; set; }
|
}
|
}
|