| 1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Response
- {
- public class EmbryoMarkResponse
- {
- public string tlSn { get; set; }
- public long embryoCultureRecordId { get; set; }
- public long embryoId { get; set; }
- public int houseSn { get; set; }
- public string markKey { get; set; }
- public long model { get; set; }
- //public long pictureUuid { get; set; }
- public int developTime { get; set; }
- public int layer { get; set; }
- public long rootId { get; set; }
- public List<LeafNode> leafNode { get; set; } = new List<LeafNode>();
- }
- public class LeafNode
- {
- public int child { get; set; }
- public long id { get; set; }
- public string markKey { get; set; }
- public string markName { get; set; }
- public long parentId { get; set; }
- }
- }
|