using Prism.Mvvm; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LampInspectionMachine.Model { public class ProjectData : BindableBase { [SugarColumn(IsPrimaryKey = true, IsIdentity = true)] public int id { get; set; } /// /// 员工 /// public string userId { get; set; } /// /// 设备名称 /// public string deviceId { get; set; } /// /// /// public string recordId { get; set; } /// /// 订单编号 /// public string orderId { get; set; } /// /// /// public DateTime creationTime { get; set; } /// /// json订单信息 /// public string orderJson { get; set; } /// /// json上传信息 /// public string productionRecords { get; set; } } }