| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace common\models;
- class xhStatIncome extends xhBaseModel
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'xhStatIncome';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['time', 'merchantId','addTime'], 'integer'],
- [['amount',], 'number'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'time' => 'Time',
- 'amount' => 'Amount',
- 'addTime' => 'addTime',
- 'merchantId' => 'Merchant ID'
- ];
- }
- }
|