基础服务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.
 
 

25 lines
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. }