zm
2021-04-09 93652ca875fc904a25a7f214adc548745573950a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
 
namespace app\models;
 
use Yii;
 
/**
 * This is the model class for table "{{%aliapp_config}}".
 *
 * @property int $id
 * @property int $mall_id
 * @property string $appid
 * @property string $app_private_key
 * @property string $alipay_public_key
 * @property string $cs_tnt_inst_id
 * @property string $cs_scene
 * @property string $app_aes_secret
 * @property string $transfer_app_id
 * @property string $transfer_app_private_key
 * @property string $transfer_alipay_public_key
 * @property string $transfer_appcert
 * @property string $transfer_alipay_rootcert
 * @property string $created_at
 * @property string $updated_at
 */
class AliappConfig extends ModelActiveRecord
{
    /**
     * {@inheritdoc}
     */
    public static function tableName()
    {
        return '{{%aliapp_config}}';
    }
 
    /**
     * {@inheritdoc}
     */
    public function rules()
    {
        return [
            [['mall_id', 'appid', 'app_private_key', 'alipay_public_key', 'created_at', 'updated_at'], 'required'],
            [['mall_id'], 'integer'],
            [['created_at', 'updated_at', 'transfer_alipay_public_key', 'transfer_appcert', 'transfer_alipay_rootcert'], 'safe'],
            [['appid', 'cs_tnt_inst_id', 'cs_scene', 'app_aes_secret', 'transfer_app_id'], 'string', 'max' => 32],
            [['app_private_key', 'alipay_public_key', 'transfer_app_private_key', ], 'string', 'max' => 2000],
        ];
    }
 
    /**
     * {@inheritdoc}
     */
    public function attributeLabels()
    {
        return [
            'id' => 'ID',
            'mall_id' => 'Mall ID',
            'appid' => 'Appid',
            'app_private_key' => 'App Private Key',
            'alipay_public_key' => 'Alipay Public Key',
            'cs_tnt_inst_id' => 'Cs Tnt Inst ID',
            'cs_scene' => 'Cs Scene',
            'app_aes_secret' => '内容加密方式 AES密钥',
            'transfer_app_id' => '转账app_id',
            'transfer_app_private_key' => '转账应用私钥',
            'transfer_alipay_public_key' => '转账支付宝公钥',
            'transfer_appcert' => '转账应用公钥证书',
            'transfer_alipay_rootcert' => '转账支付宝根证书',
            'created_at' => 'Created At',
            'updated_at' => 'Updated At',
        ];
    }
}