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