最新服务器上的版本,以后用这个
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
<?php
 
namespace app\models;
 
use Yii;
 
/**
 * This is the model class for table "{{%mail_setting}}".
 *
 * @property int $id
 * @property int $mall_id
 * @property int $mch_id
 * @property string $send_mail 发件人邮箱
 * @property string $send_pwd 授权码
 * @property string $send_name 发件人名称
 * @property string $receive_mail 收件人邮箱 多个用英文逗号隔开
 * @property int $status 是否开启邮件通知 0--关闭 1--开启
 * @property int $is_delete
 * @property string $created_at
 * @property string $updated_at
 * @property string $deleted_at
 * @property string $show_type
 */
class MailSetting extends ModelActiveRecord
{
    /**
     * {@inheritdoc}
     */
    public static function tableName()
    {
        return '{{%mail_setting}}';
    }
 
    /**
     * {@inheritdoc}
     */
    public function rules()
    {
        return [
            [['mall_id', 'status', 'is_delete', 'mch_id'], 'integer'],
            [['send_mail', 'receive_mail', 'show_type'], 'string'],
            [['created_at', 'updated_at', 'deleted_at'], 'required'],
            [['created_at', 'updated_at', 'deleted_at'], 'safe'],
            [['send_pwd', 'send_name'], 'string', 'max' => 255],
        ];
    }
 
    /**
     * {@inheritdoc}
     */
    public function attributeLabels()
    {
        return [
            'id' => 'ID',
            'mall_id' => 'Mall ID',
            'mch_id' => 'Mch ID',
            'send_mail' => 'Send Mail',
            'send_pwd' => 'Send Pwd',
            'send_name' => 'Send Name',
            'receive_mail' => 'Receive Mail',
            'status' => 'Status',
            'is_delete' => 'Is Delete',
            'created_at' => 'Created At',
            'updated_at' => 'Updated At',
            'deleted_at' => 'Deleted At',
            'show_type' => 'attr 规格 goods_no 货号 form_data 下单表单',
        ];
    }
}