TimestampBehavior::class, 'value' => time() ] ]; } public static function tableName() { return '{{%product_batch_process_log}}'; } public function rules() { return [ [['store_id', 'product_id', 'product_batch_id', 'product_batch_process_id' ], 'required'], [['store_id', 'created_at', 'updated_at', 'is_delete', 'product_id', 'product_batch_id', 'product_batch_process_id', 'state' ], 'integer'], ]; } public function attributeLabels() { return [ 'id' => 'ID', 'store_id' => '商城id', 'product_id' => '产品id', 'product_batch_id' => '批次id', 'product_batch_process_id' => '批次流程id', 'state' => '状态 0-未提交 1-已提交', 'created_at' => '创建时间', 'updated_at' => '更新时间', 'is_delete' => 'Is Delete', ]; } }