SqlSugar/OrmTest/Models/ViewModelStudent.cs
sunkaixuan b58a99eeeb -
2017-03-06 01:18:01 +08:00

18 lines
296 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OrmTest.Models
{
public class ViewModelStudent:Student
{
}
public class ViewModelStudent2
{
public Student Student { get; set; }
}
}