| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- namespace app\model\saas;
- use app\extra\basic\Model;
- /**
- * @property integer $id (主键)
- * @property integer $agent_id 代理id
- * @property integer $store_id 店铺id
- * @property integer $orders
- * @property string $orders_template
- * @property integer $order_submit
- * @property string $order_submit_template
- * @property integer $order_send
- * @property string $order_send_template
- * @property integer $order_auto
- * @property string $order_auto_template
- * @property integer $order_agent
- * @property string $order_agent_template
- * @property integer $order_cancel
- * @property string $order_cancel_template
- * @property integer $order_cancel_submit
- * @property string $order_cancel_submit_template
- * @property integer $order_done
- * @property string $order_done_template
- * @property mixed $create_at
- */
- class SaasSmsScene 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_sms_scene";
-
- /**
- * 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;
- }
|