You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.1 KiB
C#
72 lines
2.1 KiB
C#
3 years ago
|
using FreeSql.DatabaseModel;using System;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Reflection;
|
||
|
using System.Threading.Tasks;
|
||
|
using Newtonsoft.Json;
|
||
|
using FreeSql.DataAnnotations;
|
||
|
|
||
|
namespace djy.Model {
|
||
|
|
||
|
[JsonObject(MemberSerialization.OptIn), Table(DisableSyncStructure = true)]
|
||
|
public partial class InfoClass {
|
||
|
|
||
|
[JsonProperty, Column(Name = "id", IsPrimary = true, IsIdentity = true)]
|
||
|
public int Id { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "author", DbType = "varchar(40)")]
|
||
|
public string Author { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "classAttrib")]
|
||
|
public int? ClassAttrib { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "classIcon", DbType = "varchar(500)")]
|
||
|
public string ClassIcon { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "classID", DbType = "varchar(16)")]
|
||
|
public string ClassID { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "classKey", DbType = "varchar(200)")]
|
||
|
public string ClassKey { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "classLocation")]
|
||
|
public int? ClassLocation { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "className", DbType = "varchar(100)")]
|
||
|
public string ClassName { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "classNameEng", DbType = "varchar(200)")]
|
||
|
public string ClassNameEng { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "createDate")]
|
||
|
public DateTime? CreateDate { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "del_sign")]
|
||
|
public bool? DelSign { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "hasChild")]
|
||
|
public bool? HasChild { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "isSort")]
|
||
|
public bool? IsSort { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "isUsed")]
|
||
|
public bool? IsUsed { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "lastModifyDate")]
|
||
|
public DateTime? LastModifyDate { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "parentID", DbType = "varchar(16)")]
|
||
|
public string ParentID { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "sortAttrib")]
|
||
|
public bool? SortAttrib { get; set; }
|
||
|
|
||
|
[JsonProperty, Column(Name = "sortID")]
|
||
|
public int? SortID { get; set; }
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|