Material.php 308 B

123456789101112131415161718
  1. <?php
  2. namespace PhpLife\App\Api\Package\Database;
  3. use PhpLife\Frame\Package\Database\Single;
  4. class Material extends Single
  5. {
  6. const CONFIG_CLASS = 'MySQL\\Makeup';
  7. protected static $tableName = 'material_data';
  8. protected static $fields = array();
  9. protected static $primaryKey = 'id';
  10. }