You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace TelpoPush.Position.Worker.Models.CacheTemplates
- {
-
- public class PersonInfoModel
- {
- public PersonModel person { get; set; }
- public string time { get; set; }
- }
- public class PersonModel
- {
- public string personId { get; set; }
- public string serialno { get; set; }
- public string personName { get; set; }
- public string deviceId { get; set; }
- public string nickName { get; set; }
- public bool gender { get; set; }
- public int height { get; set; }
- public int weight { get; set; }
- public string bornDate { get; set; }
- public string school { get; set; }
- public string grade { get; set; }
- public string className { get; set; }
- public string imagePath { get; set; }
- public string imagePathSmall { get; set; }
- public int age { get; set; }
- public string createTime { get; set; }
- public string remarks { get; set; }
- public int ishypertension { get; set; }
- public string emotion { get; set; }
- public int profession { get; set; }
- public int regularity { get; set; }
- public int chronicDisease { get; set; }
- public string apiUid { get; set; }
- public string apiRemark { get; set; }
- }
- }
|