| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- namespace common\models;
- use Yii;
- /**
- * This is the model class for table "{{%GXLIMIT_LOG}}".
- *
- * @property string $ID 主键
- * @property string $NOW_SHARE_TIMES 当前分享得第几次
- * @property string $SHARE_USER_ID 分享奖励者用户ID
- * @property string $WINNER_USER_ID 活得共享奖励者ID
- * @property string $SHARE_TYPE 得奖类型 1为向下找五次记录 2为上和下一起有报单团队奖金得用户
- * @property string $ADD_TIME 添加时间
- * @property string $AMOUNT 实得奖金
- * @property string $ORI_AMOUNT 原奖金
- */
- class GxlimitLog extends \common\components\ActiveRecord
- {
- /**
- * {@inheritdoc}
- */
- public static function tableName()
- {
- return '{{%GXLIMIT_LOG}}';
- }
- /**
- * {@inheritdoc}
- */
- public function rules()
- {
- return [
-
- ];
- }
- /**
- * {@inheritdoc}
- */
- public function attributeLabels()
- {
- return [
- 'ID' => '主键ID',
- 'NOW_SHARE_TIMES' => '当前分享得第几次',
- 'SHARE_USER_ID' => '分享奖励者用户ID',
- 'WINNER_USER_ID' => '活得共享奖励者ID',
- 'SHARE_TYPE' => '得奖类型 1为向下找五次记录 2为上和下一起有报单团队奖金得用户',
- 'ADD_TIME' => '添加时间',
- 'AMOUNT' => '实得奖金',
- 'ORI_AMOUNT' => '原奖金'
- ];
- }
- }
|