Update MySql

This commit is contained in:
sunkaixuan
2017-06-24 00:25:13 +08:00
parent 321cc01198
commit 41136bbba1
49 changed files with 3548 additions and 13 deletions

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace OrmTest.Models
{
public enum SchoolEnum
{
HarvardUniversity = 0,
UniversityOfOxford = 1
}
public class StudentEnum
{
public int Id { get; set; }
public SchoolEnum SchoolId { get; set; }
public string Name { get; set; }
public DateTime? CreateTime { get; set; }
[SqlSugar.SugarColumn(IsIgnore =true)]
public int TestId { get; set; }
}
}