SqlSugar/OrmTest/Models/ViewModelStudent.cs

18 lines
296 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
{
public Student Student { get; set; }
2017-03-05 16:18:49 +08:00
}
}