Add PgSql

This commit is contained in:
610262374@qq.com
2018-11-30 15:41:25 +08:00
parent 58928e07be
commit 22fd96345c
49 changed files with 3857 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest.Models
{
public class School
{
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int Id { get; set; }
[SugarColumn(Length = 50)]
public string Name { get; set; }
}
}