LocalHuifuMerchant.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 $channel_id
  23. * agent_examine
  24. */
  25. class LocalHuifuMerchant extends \yii\db\ActiveRecord
  26. {
  27. /**
  28. * {@inheritdoc}
  29. */
  30. public static function tableName()
  31. {
  32. return '{{%local_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', 'channel_id'], '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. 'channel_id' => '渠道号ID',
  61. ];
  62. }
  63. }