mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-07-15 05:13:27 +08:00
18 lines
296 B
C#
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; }
|
|
}
|
|
}
|