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

27 lines
718 B

  1. using BPA.SAAS.Manage.Comm.Enum;
  2. using BPA.SAAS.Manage.Core.Base;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPA.SAAS.Manage.Application.DataBase.Dtos.Goods
  9. {
  10. public class GoodsQueryDto: PageInputBase
  11. {
  12. public string Name { get; set; }
  13. public string DeviceId { get; set; }
  14. public string Code { get; set; }
  15. public string Design { get; set; }
  16. public string GoodsTypeName { get; set; }
  17. /// <summary>
  18. /// 状态 【正常 停用】默认 正常
  19. /// </summary>
  20. public string Status { get; set; }
  21. public string Descritption { get; set; }
  22. }
  23. }