using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPA.SAAS.Manage.Core.Device { public class BPA_TechnologyExportRecode { /// /// 主键 Guid /// [SugarColumn(IsPrimaryKey = true, ColumnDataType = "Nvarchar(64)", IsNullable = false)] public string Id { get; set; } public string DeviceVersionId { get; set; } public string ProductId { get; set; } public DateTime CreateAt { get; set; } public string TemplatePath { get; set; } } }