| 1234567891011121314151617181920212223242526272829 |
- using CommunityToolkit.Mvvm.ComponentModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Entity.balance
- {
- public class EmbryoMark : ObservableObject
- {
- public int id { get; set; }
- public int parentId { get; set; }
- public int wellSn { get; set; }
- public int markId { get; set; }
- public string markName { get; set; }
- public string markKey { get; set; }
- public string markPictureTime { get; set; }
- public string createTime { get; set; }
- public List<EmbryoMark> children { get; set; }
- public string pictureUrl { get; set; }
- public int developTime { get; set; }
- public int child { get; set; }
- public string markType { get; set; }
- public double score { get; set; }
- public int pictureLayer { get; set; }
- public int orderNum { get; set; }
- }
- }
|