xhSetMeal.php 539 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace common\models;
  3. /**
  4. * This is the model class for table "xhSetMeal".
  5. *
  6. * @property int $id
  7. * @property string $name 套餐名称
  8. * @property int $manageStyle 套餐所属的经营类型,零售 花艺培训 批发 参考configDict
  9. * @property string $price 套餐价格
  10. * @property string $createTime 创建时间
  11. * @property string $updateTime 修改时间
  12. */
  13. class xhSetMeal extends xhBaseModel
  14. {
  15. /**
  16. * @inheritdoc
  17. */
  18. public static function tableName()
  19. {
  20. return 'xhSet';
  21. }
  22. }