SqlSugar/Src/Asp.Net/SqlServerTest/Models/ViewModelStudent.cs

19 lines
337 B
C#
Raw Normal View History

2017-03-05 16:18:49 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest.Models
{
public class ViewModelStudent:Student
{
2017-03-06 01:18:01 +08:00
}
public class ViewModelStudent2
{
2017-04-09 17:03:07 +08:00
public string Name { get; set; }
2017-03-06 01:18:01 +08:00
public Student Student { get; set; }
2017-03-05 16:18:49 +08:00
}
}