UctFrmHistoryQuery.cs 648 B

123456789101112131415161718192021222324252627
  1. using SCADA.CommonCtrl.WpfControl;
  2. using SCADA_DAQ.Customer.Models;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Reflection;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. namespace SCADA_DAQ.Customer
  11. {
  12. /// <summary>
  13. /// UctFrmHistoryQuery.xaml 的交互逻辑
  14. /// </summary>
  15. [UctMenu("数据查询", Icon = "查询")]
  16. public partial class UctFrmHistoryQuery : CommonQueryFrm<HistoryQueryModel, ProductModel>
  17. {
  18. /// <summary>
  19. ///
  20. /// </summary>
  21. public UctFrmHistoryQuery()
  22. {
  23. DAL = Env.DAL;
  24. }
  25. }
  26. }