23 lines
570 B
C#
23 lines
570 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SamplePre.Models.Models
|
|
{
|
|
public class sample_exec
|
|
{
|
|
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; }
|
|
public string exec_state { get; set; }
|
|
|
|
public DateTime exec_date { get; set; }
|
|
|
|
}
|
|
}
|