PlatformHuifuMerchant.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. /**
  3. * 厦门云联储网络科技有限公司
  4. * https://www.baokuaiyun.com
  5. * Copyright (c) 2023 爆块云 All rights reserved.
  6. */
  7. namespace app\models;
  8. /**
  9. * @description:
  10. * @property string $huifu_name
  11. * @property string $sys_id
  12. * @property string $product_id
  13. * @property string $huifu_id
  14. * @property string $rsa_huifu_public_key
  15. * @property string $rsa_merch_public_key
  16. * @property string $rsa_merch_private_key
  17. * @property integer $sort
  18. * @property integer $status
  19. * @property integer $created_at
  20. * @property integer $updated_at
  21. * @property integer $is_delete
  22. * @property integer $is_acct_split
  23. * agent_examine
  24. */
  25. class PlatformHuifuMerchant extends \yii\db\ActiveRecord
  26. {
  27. /**
  28. * {@inheritdoc}
  29. */
  30. public static function tableName()
  31. {
  32. return '{{%platform_huifu_merchant}}';
  33. }
  34. /**
  35. * {@inheritdoc}
  36. */
  37. public function rules()
  38. {
  39. return [
  40. [[ 'huifu_name', 'sys_id', 'product_id', 'huifu_id', 'rsa_huifu_public_key', 'rsa_merch_public_key', 'rsa_merch_private_key'], 'string'],
  41. [['id', 'sort', 'status', 'is_delete', 'created_at', 'updated_at'], 'integer']
  42. ];
  43. }
  44. /**
  45. * {@inheritdoc}
  46. */
  47. public function attributeLabels()
  48. {
  49. return [
  50. 'id' => 'ID',
  51. 'huifu_name' => '商户名称',
  52. 'sys_id' => '商户的huifu_id',
  53. 'product_id' => '汇付分配的产品号',
  54. 'huifu_id' => '商户号',
  55. 'rsa_huifu_public_key' => '汇付公钥',
  56. 'rsa_merch_public_key' => '商户公钥',
  57. 'rsa_merch_private_key' => '商户私钥',
  58. 'sort' => '排序',
  59. 'status' => '状态',
  60. ];
  61. }
  62. }