Files
SamplePreSystem-CS/SamplePre.Models/Tables/sample_exec_detail.cs
2026-04-30 11:34:41 +08:00

19 lines
334 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_detail
{
public int id { get; set; }
public string master_id { get; set; }
public string qrcode { get; set; }
}
}