GoodsLabel.php 228 B

12345678910111213141516
  1. <?php
  2. namespace app\model;
  3. use support\Model;
  4. class GoodsLabel extends Model
  5. {
  6. protected $table = 'goods_label';
  7. protected $primaryKey = 'goods_label_id';
  8. const CREATED_AT = null;
  9. const UPDATED_AT = null;
  10. }