Files
SamplePreSystem-CS/SamplePre.Models/Tables/sample_exec.cs

37 lines
975 B
C#
Raw Normal View History

2026-04-30 11:34:41 +08:00
using System;
using System.Collections.Generic;
2026-05-08 15:08:20 +08:00
using System.ComponentModel;
2026-04-30 11:34:41 +08:00
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SamplePre.Models.Models
{
2026-05-08 15:08:20 +08:00
public class sample_exec :INotifyPropertyChanged
2026-04-30 11:34:41 +08:00
{
public string id { get; set; }
public string standrad_id { get; set; }
public string cmd_content { get; set; }
public string cmd_content2 { get; set; }
public string qrcodes { get; set; }
public int sample_count { get; set; }
2026-05-08 15:08:20 +08:00
//public string exec_state { get; set; }
private string _exec_state;
public string exec_state
{
get { return _exec_state; }
set { _exec_state = value;
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(nameof(exec_state)));
}
}
2026-04-30 11:34:41 +08:00
public DateTime exec_date { get; set; }
2026-05-08 15:08:20 +08:00
public event PropertyChangedEventHandler? PropertyChanged;
2026-04-30 11:34:41 +08:00
}
}