优化样品管理

This commit is contained in:
2026-05-08 15:08:20 +08:00
parent a28bfb9198
commit 06a5f9707d
9 changed files with 215 additions and 72 deletions

View File

@@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Models.Models
{
public class sample_input
{
public string qrcode { get; set; }
public string item_name { get; set; }
public string tube_type { get; set; }
public string standrad_id { get; set; }
public string standrad { get; set; }
public string input_user { get; set; }
public DateTime input_date { get; set; }
public string weight { get; set; }
public int tube_count { get; set; }
public string bach_no { get; set; }
public string exec_state { get; set; }
public DateTime exec_date { get; set; }
public string exec_id { get; set; }
}
}