| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace plugin\admin\app\model;
- use plugin\admin\app\model\Base;
- /**
- * @property integer $id 主键(主键)
- * @property string $name 支付名称
- * @property string $title 渠道名称
- * @property integer $type 渠道类型
- * @property integer $characteristic 支付标识
- * @property integer $sort 排序
- * @property integer $state 状态
- * @property string $img 图片
- */
- class PayAisle extends Base
- {
- /**
- * The table associated with the model.
- *
- * @var string
- */
- protected $table = 'wa_pay_aisle';
- /**
- * The primary key associated with the table.
- *
- * @var string
- */
- protected $primaryKey = 'id';
- /**
- * Indicates if the model should be timestamped.
- *
- * @var bool
- */
- public $timestamps = false;
-
-
- }
|