AliSms.php 463 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /**
  3. * 手机短信管理模型
  4. */
  5. namespace plugin\ali_sms\model;
  6. use laytp\BaseModel;
  7. use think\model\concern\SoftDelete;
  8. class AliSms extends BaseModel
  9. {
  10. use SoftDelete;
  11. //模型名
  12. protected $name = 'plugin_ali_sms';
  13. //时间戳字段转换
  14. //是否关闭create_time自动写入
  15. //是否关闭update_time自动写入
  16. //是否关闭delete_time自动写入
  17. //表名
  18. //关联模型
  19. }