ShMethod.php 445 B

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