26 lines
606 B
C#
26 lines
606 B
C#
|
|
using SamplePre.Models.Models;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace SamplePre.Models.Ext
|
|||
|
|
{
|
|||
|
|
public class sample_exec_detail_ext : sample_exec_detail
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public string exec_state { get; set; }
|
|||
|
|
public string item_name { get; set; }
|
|||
|
|
|
|||
|
|
public string standrad_id { get; set; }
|
|||
|
|
public string standrad { get; set; }
|
|||
|
|
public DateTime input_date { get; set; }
|
|||
|
|
public string input_user { get; set; }
|
|||
|
|
public string tube_type_name { get; set; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|