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

27 lines
623 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
}
2017-07-17 12:56:21 +08:00
public class ViewModelStudent3: Student
{
public string SchoolName { get; set; }
2018-10-13 11:03:25 +08:00
public string School_Name { get; set; }
public string ScId { get; set; }
2018-10-14 13:10:08 +08:00
public School School { get; set; }
public List<School> Schools { get; set; }
2017-07-17 12:56:21 +08:00
}
2017-03-05 16:18:49 +08:00
}