Files
SamplePreSystem-CS/SamplePre.Models/Ext/sample_exec_detail_ext.cs

26 lines
606 B
C#
Raw Normal View History

2026-04-30 11:34:41 +08:00
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; }
}
}