最新服务器上的版本,以后用这个
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
74
75
76
77
78
79
80
81
82
83
84
85
86
<?php
 
namespace app\models;
 
use Yii;
 
/**
 * This is the model class for table "{{%printer_setting}}".
 *
 * @property int $id
 * @property int $mall_id
 * @property int $mch_id
 * @property int $printer_id 打印机id
 * @property int $block_id 模板id
 * @property int $is_attr 0不使用规格 1使用规格
 * @property string $type 打印方式
 * @property string $big 倍数
 * @property string $status 是否启用
 * @property int $store_id 门店ID
 * @property int $is_delete 删除
 * @property string $created_at
 * @property string $updated_at
 * @property string $deleted_at
 * @property Printer $printer
 * @property Store $store
 * @property int $show_type
 * @property string $order_send_type
 */
class PrinterSetting extends ModelActiveRecord
{
    /**
     * {@inheritdoc}
     */
    public static function tableName()
    {
        return '{{%printer_setting}}';
    }
 
    /**
     * {@inheritdoc}
     */
    public function rules()
    {
        return [
            [['mall_id', 'printer_id', 'type', 'created_at', 'updated_at', 'deleted_at', 'show_type'], 'required'],
            [['mall_id', 'printer_id', 'block_id', 'is_attr', 'is_delete', 'status', 'mch_id', 'store_id', 'big'], 'integer'],
            [['type', 'show_type', 'order_send_type'], 'string'],
            [['order_send_type'], 'string', 'max' => 255],
            [['created_at', 'updated_at', 'deleted_at'], 'safe'],
        ];
    }
 
    /**
     * {@inheritdoc}
     */
    public function attributeLabels()
    {
        return [
            'id' => 'ID',
            'mall_id' => 'Mall ID',
            'mch_id' => 'Mch ID',
            'printer_id' => '打印机id',
            'block_id' => '模板id',
            'is_attr' => '0不使用规格 1使用规格',
            'big' => '倍数',
            'type' => '打印方式',
            'show_type' => '显示方式',
            'status' => '是否启用',
            'is_delete' => '删除',
            'order_send_type' => '订单发货方式',
            'created_at' => 'Created At',
            'updated_at' => 'Updated At',
            'deleted_at' => 'Deleted At',
        ];
    }
 
    public function getPrinter()
    {
        return $this->hasOne(Printer::className(), ['id' => 'printer_id']);
    }
 
    public function getStore()
    {
        return $this->hasOne(Store::className(), ['id' => 'store_id']);
    }
}