| 1234567891011121314151617181920212223242526 |
- using ivf_tl_Entity.Entity.balance;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Entity.Mark
- {
- public class EmbryoMarkInfo
- {
- public string blastocystLevel { get; set; }
- public long embryoCultureRecordId { get; set; }
- public int houseSn { get; set; }
- public long id { get; set; }
- public string imageUrl { get; set; }
- public string level { get; set; }
- public decimal score { get; set; }
- public string startTime { get; set; }
- public int state { get; set; }
- public string stateTime { get; set; }
- public string tlSn { get; set; }
- public int wellSn { get; set; }
- public List<EmbryoMark> embryoMark { get; set; } = new List<EmbryoMark>();
- }
- }
|