基础服务api
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

23 lines
632 B

  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPA.SAAS.Manage.Core.Device
  8. {
  9. public class BPA_TechnologyExportRecode
  10. {
  11. /// <summary>
  12. /// 主键 Guid
  13. /// </summary>
  14. [SugarColumn(IsPrimaryKey = true, ColumnDataType = "Nvarchar(64)", IsNullable = false)]
  15. public string Id { get; set; }
  16. public string DeviceVersionId { get; set; }
  17. public string ProductId { get; set; }
  18. public DateTime CreateAt { get; set; }
  19. public string TemplatePath { get; set; }
  20. }
  21. }