mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
39 lines
702 B
PHP
39 lines
702 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
/**
|
||
* 插件接口
|
||
*
|
||
* @author xiayuanjun@shopex.cn
|
||
* @version 1.0
|
||
*/
|
||
|
||
interface sales_exportextracolumn_interface {
|
||
|
||
/**
|
||
* 定义要执行数据处理的主键ids
|
||
*
|
||
* @param Array $group 要处理的列表数组数据
|
||
* @return Array
|
||
*/
|
||
public function init($params);
|
||
|
||
/**
|
||
* 处理字段数据组信息
|
||
*
|
||
* @param null
|
||
* @return Array
|
||
*/
|
||
public function process($params);
|
||
|
||
/**
|
||
* 转换相应字段的内容
|
||
*
|
||
* @param null
|
||
* @return Array
|
||
*/
|
||
public function outPut();
|
||
} |