| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <?php
- namespace app\model\merchant;
- use app\extra\basic\Model;
- /**
- * @property integer $id (主键)
- * @property integer $agent_id
- * @property integer $store_id
- * @property integer $uid
- * @property string $name
- * @property string $mobile
- * @property integer $money
- * @property integer $type 1现金2微信
- * @property integer $status 0未到账1成功
- * @property integer $transaction_id 微信订单
- * @property string $order_sn
- * @property mixed $create_at
- */
- class MerchantMemberRecharge extends Model
- {
- /**
- * The connection name for the model.
- *
- * @var string|null
- */
- protected $connection = 'mysql';
-
- /**
- * The table associated with the model.
- *
- * @var string
- */
- protected string $table = "merchant_member_recharge";
-
- /**
- * The primary key associated with the table.
- *
- * @var string
- */
- protected string $primaryKey = "id";
-
- /**
- * Indicates if the model should be timestamped.
- *
- * @var bool
- */
- public bool $timestamps = false;
- }
|