PsMethod.php 489 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * 用途:花店配送方式配置主表模型
  4. * 谁用:花店系统(hdApp 配送方式设置页)
  5. * 解决什么问题:存储送货、自取、跑腿、快递、物流等配送方式的基础配置(xhPsMethod)
  6. */
  7. namespace bizHd\order\models;
  8. use bizHd\base\models\Base;
  9. class PsMethod extends Base
  10. {
  11. /**
  12. * 返回对应的数据库表名
  13. * @return string
  14. */
  15. public static function tableName()
  16. {
  17. return 'xhPsMethod';
  18. }
  19. }