SqlSugar/Src/Asp.NetCore2/SqlSeverTest/OracleTest/Models/ViewOrder.cs

14 lines
234 B
C#
Raw Normal View History

2019-06-04 21:00:10 +08:00
using System;
2017-10-23 16:07:26 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2019-06-04 21:00:10 +08:00
namespace OrmTest
2017-10-23 16:07:26 +08:00
{
2019-06-04 21:00:10 +08:00
public class ViewOrder:Order
2017-10-23 16:07:26 +08:00
{
2019-06-04 21:00:10 +08:00
public string CustomName { get; set; }
2017-10-23 16:07:26 +08:00
}
}