|
@@ -0,0 +1,30 @@
|
|
|
|
+using System.Collections.Generic;
|
|
|
|
+
|
|
|
|
+namespace TEAMModelBI.Models
|
|
|
|
+{
|
|
|
|
+ public class AssistSchool
|
|
|
|
+ {
|
|
|
|
+ public string id { get; set; }
|
|
|
|
+ public string code { get; set; }
|
|
|
|
+ public string schoolCode { get; set; }
|
|
|
|
+ public string name { get; set; }
|
|
|
|
+ public string region { get; set; }
|
|
|
|
+ public string province { get; set; }
|
|
|
|
+ public string city { get; set; }
|
|
|
|
+ public string dist { get; set; }
|
|
|
|
+ public int size { get; set; }
|
|
|
|
+ public string address { get; set; }
|
|
|
|
+ public string picture { get; set; }
|
|
|
|
+ public int type { get; set; }
|
|
|
|
+ public int scale { get; set; }
|
|
|
|
+ public string standard { get; set; }
|
|
|
|
+ public string areaId { get; set; }
|
|
|
|
+ public List<SchoolTeacherRoles> assists { get; set; }
|
|
|
|
+ public int serial { get; set; } //软体
|
|
|
|
+ public int service { get; set; } //服务
|
|
|
|
+ public int hard { get; set; } //硬体
|
|
|
|
+ //public List<SchoolProductSumData> serial { get; set; } //软体
|
|
|
|
+ //public List<SchoolProductSumData> service { get; set; } //服务
|
|
|
|
+ //public List<SchoolProductSumDataHard> hard { get; set; } //硬体
|
|
|
|
+ }
|
|
|
|
+}
|