| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Entity.balance
- {
- public class Embryo
- {
- public long id { get; set; }
- public string tlSn { get; set; }
- public int houseSn { get; set; }
- public int wellSn { get; set; }
- public string startTime { get; set; }
- public int state { get; set; }
- public string stateTime { get; set; }
- public int embryoCultureRecordId { get; set; }
- public double score { get; set; }
- public string blastocystLevel { get; set; }
- public string imageUrl { get; set; }
- public string level { get; set; }
- public List<EmbryoMark> embryoMark { get; set; }
- private int _alarm = 0;
- public int alarm
- {
- get => _alarm;
- set
- {
- if (_alarm == value) return;
- _alarm = value;
- AlarmChangedEvent?.Invoke(wellSn, value);
- }
- }
- public event Action<int, int> AlarmChangedEvent;
- }
- }
|