ShExplain.php 429 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * 用途:配送方式说明项模型
  4. * 谁用:供货商系统
  5. * 解决什么问题:存储每种配送方式下的说明文字、颜色、加粗等配置
  6. */
  7. namespace bizGhs\order\models;
  8. use bizGhs\base\models\Base;
  9. class ShExplain extends Base
  10. {
  11. /**
  12. * 返回对应的数据库表名
  13. * @return string
  14. */
  15. public static function tableName()
  16. {
  17. return 'xhShExplain';
  18. }
  19. }