SqlSugar/Src/Asp.Net/PgSqlTest/Models/ViewOrder.cs

14 lines
234 B
C#
Raw Normal View History

2019-05-26 19:35:57 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest
{
public class ViewOrder:Order
{
public string CustomName { get; set; }
}
}