| 1234567891011121314151617181920 |
- <?php
- namespace common\services;
- use common\components\dict;
- use Yii;
- use common\models\xhUserGrowth;
- class xhUserGrowthService {
- public static function add($data)
- {
- return xhUserGrowth::add($data);
- }
- public static function getById($id)
- {
- $integral = xhUserGrowth::find()->where(['id' => $id])->asArray()->one();
- return $integral;
- }
-
- }
|