| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- 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 DishRecordEntity : ObservableObject
- {
- public int num { get; set; }
- public string stateString { get; set; } = "结束培养";
- public string fayuTime { get; set; }
- public string tlName { get; set; }
- public string caseId { get; set; }
- public string createTime { get; set; }
- public int developTime { get; set; }
- public int embryoCount { get; set; }
- public string endTime { get; set; }
- public string fertilizationType { get; set; }
- public long fertilizationTypeId { get; set; }
- public int deleted { get; set; }
- public int freezing { get; set; }
- public int houseSn { get; set; }
- public string husband { get; set; }
- public string husbandBirth { get; set; }
- public long id { get; set; }
- public int invalid { get; set; }
- public string note { get; set; }
- public string startTime { get; set; }
- public int state { get; set; }
- public string tlSn { get; set; }
- public int transplant { get; set; }
- public int vip { get; set; }
- public string wife { get; set; }
- public string wifeBirth { get; set; }
- public string cycle { get; set; }
- public string createTimeString { get; set; }
- public string startTimeString { get; set; }
- public string endTimeString { get; set; }
- private bool isMouseOver;
- public bool IsMouseOver
- {
- get => isMouseOver;
- set => SetProperty(ref isMouseOver, value);
- }
- private bool _IsCheck;
- public bool IsCheck
- {
- get => _IsCheck;
- set => SetProperty(ref _IsCheck, value);
- }
-
- }
- }
|