| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- using CommunityToolkit.Mvvm.ComponentModel;
- using System;
- using System.Collections.Generic;
- using System.Collections.ObjectModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.GlobalEntitys
- {
- public partial class ExDish: ObservableObject
- {
- public long id { get; set; }
- public string tlSn { get; set; }
- public int houseSn { get; set; }
- private string _caseId;
- public string caseId
- {
- get => _caseId;
- set => SetProperty(ref _caseId, value);
- }
- public string _cycle;
- public string cycle
- {
- get => _cycle;
- set => SetProperty(ref _cycle, value);
- }
- //public string caseId { get; set; }
- private string _wife;
- public string wife
- {
- get => _wife;
- set
- {
- SetProperty(ref _wife, value);
- DishName = $"{husband}/{value}";
- }
- }
- private string _husband;
- public string husband
- {
- get => _husband;
- set
- {
- SetProperty(ref _husband, value);
- DishName = $"{value}/{wife}";
- }
- }
- private string _dishName;
- public string DishName
- {
- get => _dishName;
- set
- {
- SetProperty(ref _dishName, value);
- }
- }
- public string wifeBirth { get; set; }
-
- public string husbandBirth { get; set; }
- /// <summary>
- ///备注
- /// </summary>
- public string note { get; set; }
-
- private int _vip;
- /// <summary>
- /// 0普通 1重点关注
- /// </summary>
- public int vip
- {
- get => _vip;
- set
- {
- SetProperty(ref _vip, value);
- }
- }
- public int embryoCount { get; set; }
- /// <summary>
- /// 0培养结束 1正在培养
- /// </summary>
- public int state { get; set; }
- public string startTime { get; set; }
- public string endTime { get; set; }
- public string createTime { get; set; }
- public int developTime { get; set; }
- public int Row { get; set; }
- public string fertilizationType { get; set; }
- public int fertilizationTypeId { get; set; }
- public string phone { get; set; }
- private ObservableCollection<ExEmbryo> _embryoList = new ObservableCollection<ExEmbryo>();
- public ObservableCollection<ExEmbryo> embryoList
- {
- get => _embryoList;
- set => SetProperty(ref _embryoList, value);
- }
- public DateTime? SouJingTime { get; set; }
- public List<int> wellSn { get; set; }
- }
- }
|