Mail.php 289 B

123456789101112131415
  1. <?php
  2. namespace Heanup\App\Api\Package\Database;
  3. use Heanup\Frame\Package\Database\Single;
  4. class Mail extends Single
  5. {
  6. const CONFIG_CLASS = 'MySQL\\Core';
  7. protected static $tableName = 'vesta_mail';
  8. protected static $fields = [];
  9. protected static $primaryKey = 'id';
  10. }