| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- namespace common\models;
- /**
- * This is the model class for table "xhStatDealByDay".
- *
- * @property integer $id
- * @property integer $time
- * @property integer $riseNum
- * @property integer $totalNum
- * @property integer $merchantId
- * @property string $createTime
- */
- class xhStatDealByDay extends xhBaseModel
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'xhStatDealByDay';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['time', 'riseNum', 'totalNum', 'merchantId'], 'integer'],
- [['createTime'], 'required'],
- [['createTime'], 'safe'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'time' => 'Time',
- 'riseNum' => 'Rise Num',
- 'totalNum' => 'Total Num',
- 'merchantId' => 'Merchant ID',
- 'createTime' => 'Create Time',
- ];
- }
- }
|