| 12345678910111213141516171819202122232425 |
- <?php
- namespace common\models;
- /**
- * This is the model class for table "xhSetMeal".
- *
- * @property int $id
- * @property string $name 套餐名称
- * @property int $manageStyle 套餐所属的经营类型,零售 花艺培训 批发 参考configDict
- * @property string $price 套餐价格
- * @property string $createTime 创建时间
- * @property string $updateTime 修改时间
- */
- class xhSetMeal extends xhBaseModel
- {
- /**
- * @inheritdoc
- */
- public static function tableName()
- {
- return 'xhSet';
- }
- }
|