namespace iWareSql.DBModel
|
{
|
using System;
|
using System.Collections.Generic;
|
using System.ComponentModel.DataAnnotations;
|
using System.ComponentModel.DataAnnotations.Schema;
|
using System.Data.Entity.Spatial;
|
|
public partial class Base_CodeSets
|
{
|
public int Id { get; set; }
|
|
[Required]
|
[StringLength(255)]
|
public string code { get; set; }
|
|
[Required]
|
[StringLength(255)]
|
public string name { get; set; }
|
|
[StringLength(255)]
|
public string note { get; set; }
|
|
public bool? delFlag { get; set; }
|
|
[StringLength(50)]
|
public string creator { get; set; }
|
|
public DateTime? createTime { get; set; }
|
|
[StringLength(50)]
|
public string lastModifier { get; set; }
|
|
public DateTime? lastModifyTime { get; set; }
|
}
|
}
|