SystemNotice.php 353 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace app\common\model\system\notice;
  3. use app\common\model\BaseModel;
  4. use app\common\model\system\merchant\Merchant;
  5. class SystemNotice extends BaseModel
  6. {
  7. public static function tablePk(): ?string
  8. {
  9. return 'notice_id';
  10. }
  11. public static function tableName(): string
  12. {
  13. return 'system_notice';
  14. }
  15. }