基础服务api
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

25 linhas
695 B

  1. using Npoi.Mapper.Attributes;
  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.Application.DataBase.Dtos.Goods
  8. {
  9. public class GoodstechnologyModel
  10. {
  11. [Column("模型名称")]
  12. [UseLastNonBlankValue]
  13. public string Name { get; set; }
  14. [Column("模型配置")]
  15. public string ActionName { get; set; }
  16. [Column("输入类型")]
  17. public string ActionType { get; set; }
  18. [Column("输入值类型")]
  19. public string TechnologyType { get; set; }
  20. [Column("输入选项")]
  21. public string ActionValue { get; set; }
  22. }
  23. }