TranslateRecord.php 209 B

1234567891011121314
  1. <?php
  2. namespace app\model\translate;
  3. use think\Model;
  4. /**
  5. * 翻译模型
  6. */
  7. class TranslateRecord extends Model
  8. {
  9. protected $table = "jm_translate_record";
  10. protected $autoWriteTimestamp = true;
  11. }