| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?php
- namespace app\models;
- use Yii;
- /**
- * This is the model class for table "{{%print_history}}".
- */
- class PrintHistory extends \yii\db\ActiveRecord
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return '{{%print_history}}';
- }
- /**
- * @inheritdoc
- */
- public function rules()
- {
- return [
- [['store_id', 'data', 'user_name', 'num', 'created_at','mch_id'], 'required'],
- ];
- }
- /**
- * @inheritdoc
- */
- public function attributeLabels()
- {
- return [
- 'id' => 'ID',
- 'store_id' => 'Store ID',
- 'data' => '打印订单',
- 'user_name' => '打印用户',
- 'num' => '打印订单数',
- 'created_at' => '创建时间',
- ];
- }
- }
|