This commit is contained in:
2026-01-13 12:36:57 +03:00
commit ebe1f5bd00
29 changed files with 2295 additions and 0 deletions

15
modules/HM_DC/HM_DC.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
namespace API;
trait HM_DC
{
public function getData($params)
{
$d=1;
$query = "SELECT
*
FROM [Level3_KKC].[dbo].[HM_DC] WHERE [Date] BETWEEN '".$params['dateStart']."' AND '".$params['dateEnd']."'";
select_ru($query);
}
}