refactor: 增强代码注释以提升可读性和维护性

This commit is contained in:
AprilWind
2026-05-18 10:10:16 +08:00
parent 84afd6e6c0
commit a2300b3a29
22 changed files with 192 additions and 1 deletions
@@ -232,6 +232,13 @@ public class ExportExcelServiceImpl implements IExportExcelService {
*/
private DemoCityData pData;
/**
* 构造城市演示数据。
*
* @param id 数据库 id
* @param pid 父级 id
* @param name 名称
*/
public DemoCityData(Integer id, Integer pid, String name) {
this.id = id;
this.pid = pid;