GzcLog.php 347 B

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