| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- namespace app\model\saas;
- use app\extra\basic\Model;
- /**
- * @property integer $id (主键)
- * @property mixed $poi_id
- * @property mixed $order_sn
- * @property integer $star_money 达人佣金
- * @property float $star_rate 达人佣金比例
- * @property integer $system_money 系统扣点
- * @property float $system_rate 系统扣点比例
- * @property mixed $star_plan 佣金计划ID
- * @property mixed $create_at
- */
- class SaasTransactionLog 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 = "saas_transaction_log";
-
- /**
- * 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;
- }
|