12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace TEAMModelOS.SDK.Models.Cosmos.BI
- {
- /// <summary>
- /// 创校使用
- /// </summary>
- public class CreateSchoolInfo
- {
- public string province { get; set; }
- public string id { get; set; }
- public int createCount { get; set; } = 0;
- public string name { get; set; }
- public string city { get; set; }
- public string aname { get; set; }
- }
- }
|