RoutineQrcode.php 380 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * @package merchant
  4. *
  5. * @author xaboy
  6. * @day 2020/6/18
  7. *
  8. *
  9. */
  10. namespace app\common\model\wechat;
  11. use app\common\model\BaseModel;
  12. class RoutineQrcode extends BaseModel
  13. {
  14. public static function tablePk(): ?string
  15. {
  16. return 'routine_qrcode_id';
  17. }
  18. public static function tableName(): string
  19. {
  20. return 'routine_qrcode';
  21. }
  22. }