SqlSugar/Src/Asp.Net/MySqlTest/Models/Custom.cs

15 lines
255 B
C#
Raw Normal View History

2019-05-22 20:42:46 +08:00
using System;
2017-06-24 00:25:13 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2019-05-22 20:42:46 +08:00
namespace OrmTest
2017-06-24 00:25:13 +08:00
{
2019-05-22 20:42:46 +08:00
public class Custom
2017-06-24 00:25:13 +08:00
{
public int Id { get; set; }
public string Name { get; set; }
}
}