EffectiveCategory.php 287 B

123456789101112131415
  1. <?php
  2. /**
  3. * @author 林海涛
  4. * @date 2024/7/17 下午1:59
  5. */
  6. namespace app\common\model\effective;
  7. use app\common\model\BaseModel;
  8. use think\model\Pivot;
  9. class EffectiveCategory extends Pivot
  10. {
  11. protected $name = 'effective_category';
  12. protected $autoWriteTimestamp = true;
  13. }