SaasStoreOpen.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. namespace app\model\saas;
  3. use app\extra\basic\Model;
  4. /**
  5. * @property integer $id (主键)
  6. * @property mixed $poi_id
  7. * @property string $company_name
  8. * @property mixed $company_number
  9. * @property string $company_sub_name
  10. * @property string $company_license 营业执照
  11. * @property string $city_name
  12. * @property mixed $city_code
  13. * @property string $address
  14. * @property string $legal_name 法人姓名
  15. * @property mixed $legal_mobile
  16. * @property mixed $legal_idcard 身份证号
  17. * @property string $legal_id_front 正面
  18. * @property string $legal_id_back 反面
  19. * @property mixed $email
  20. * @property mixed $bank_number 对公帐号
  21. * @property string $bank_code 开户行编码
  22. * @property string $bank_img 开户许可证照片
  23. * @property integer $status
  24. * @property string $remark
  25. * @property mixed $last_at
  26. * @property mixed $create_at
  27. */
  28. class SaasStoreOpen extends Model
  29. {
  30. /**
  31. * The connection name for the model.
  32. *
  33. * @var string|null
  34. */
  35. protected $connection = 'mysql';
  36. /**
  37. * The table associated with the model.
  38. *
  39. * @var string
  40. */
  41. protected string $table = "saas_store_open";
  42. /**
  43. * The primary key associated with the table.
  44. *
  45. * @var string
  46. */
  47. protected string $primaryKey = "id";
  48. /**
  49. * Indicates if the model should be timestamped.
  50. *
  51. * @var bool
  52. */
  53. public bool $timestamps = false;
  54. }