UserPaystub.php 678 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. class UserPaystub extends Model
  5. {
  6. // 设置字段信息
  7. protected $schema = [
  8. 'id' => 'int',
  9. 'realname' => 'string',
  10. 'idcard' => 'string',
  11. 'entrydate' => 'string',
  12. 'workhour' => 'float',
  13. 'pricehour' => 'float',
  14. 'grantmoney' => 'float',
  15. 'insuremoney' => 'float',
  16. 'watermoney' => 'float',
  17. 'taxmoney' => 'float',
  18. 'actualmoney' => 'float',
  19. 'monthtime' => 'string',
  20. 'remark' => 'string',
  21. 'telephone' => 'string',
  22. 'createtime' => 'int'
  23. ];
  24. // 设置字段自动转换类型
  25. protected $type = [
  26. 'createtime' => 'timestamp:Y-m-d H:i:s'
  27. ];
  28. }