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

43 lines
1.1 KiB

  1. using BPA.SAAS.Manage.Core.Base;
  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.Product
  8. {
  9. public class BPA_ProductFunctionAction : IBaseEntity
  10. {
  11. /// <summary>
  12. /// 功能id
  13. /// </summary>
  14. public string ProductFunctionId { get; set; }
  15. /// <summary>
  16. /// 动作名称
  17. /// </summary>
  18. public string ActionName { get; set; }
  19. /// <summary>
  20. /// 类型 (1 输入框 2下拉框)
  21. /// </summary>
  22. public string ActionType { get; set; }
  23. /// <summary>
  24. /// 类型值(jsong格式)
  25. /// </summary>
  26. public string ActionValue { get; set; }
  27. /// <summary>
  28. /// 单位
  29. /// </summary>
  30. public string Unit { get; set; }
  31. /// <summary>
  32. /// 是否绑定物料
  33. /// </summary>
  34. public bool? IsBatch { get; set; }
  35. /// <summary>
  36. /// 排序
  37. /// </summary>
  38. public int Sort { get; set; }
  39. // public string GroupId { get; set; }
  40. }
  41. }