|
|
@@ -9,6 +9,13 @@ use Yii;
|
|
|
class LabelController extends BaseController
|
|
|
{
|
|
|
|
|
|
+ //清空所有标签 ssh 20230821
|
|
|
+ public function actionClearAll()
|
|
|
+ {
|
|
|
+ $sql = "delete from xhLabel";
|
|
|
+ Yii::$app->db->createCommand($sql)->execute();
|
|
|
+ }
|
|
|
+
|
|
|
//批量添加电子标 ssh 20230821
|
|
|
public function actionBatchAddLabel()
|
|
|
{
|