namespace iWareExcel.ORM
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
[Table("EXCELWorkCell")]
|
public partial class EXCELWorkCell
|
{
|
public int id { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string displayname { get; set; }
|
|
[Required]
|
[StringLength(50)]
|
public string propname { get; set; }
|
|
public int worksheetid { get; set; }
|
|
[StringLength(50)]
|
public string worksheetname { get; set; }
|
|
public int workbookid { get; set; }
|
|
[StringLength(50)]
|
public string workbookname { get; set; }
|
|
public int datatype { get; set; }
|
|
public int isenum { get; set; }
|
|
[StringLength(200)]
|
public string enumclass { get; set; }
|
|
public int cellindex { get; set; }
|
|
public virtual EXCELWorkSheet EXCELWorkSheet { get; set; }
|
}
|
}
|