cxfoot/commands/CpanelController.php
2023-10-27 14:25:12 +08:00

40 lines
795 B
PHP

<?php
/**
* @author Any
* @description KISS
* @date 2022年6月11日
* @version 1.0.0
*
* _____LOG_____
*
*/
namespace app\commands;
use yii\console\Controller;
use yii\console\ExitCode;
use app\models\District;
/**
* This command echoes the first argument that you have entered.
*
* This command is provided as an example for you to learn how to create console commands.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class CpanelController extends Controller
{
/**
* 行政区域数据设置拼音
* @return int Exit code
*/
public function actionSetDistrictInitials($limit = 500, $max = 5000)
{
District::batchSetRecordInitial($limit, $max);
return ExitCode::OK;
}
}