3
schangxiang@126.com
2025-08-20 06ee320f1409b77da7767a98c551ba40b70f6093
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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; }
    }
}