123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace XHZB.Model
- {
- public class StudentModel
- {
- /// <summary>
- /// 头像
- /// </summary>
- public string headportrait { get; set; }
- public int userid { get; set; }
- public string username { get; set; }
- }
- }
|