Commit 8551702e8cfc84e3e890b65a3d14493060b11eab

Authored by “wangming”
1 parent 86ba68cf

fix: remove unused SQL file and clean up ExcelImportHelper.cs

- Deleted an obsolete SQL file related to member information table modifications.
- Removed a hidden character from the ExcelImportHelper.cs file for cleaner code.
netcore/ExportFiles/健康师工资_2026年1月.xlsx 0 → 100644
No preview for this file type
netcore/src/Modularity/Common/NCC.Common/Helper/ExcelImportHelper.cs
1   -using NPOI.HSSF.UserModel;
  1 +using NPOI.HSSF.UserModel;
2 2 using NPOI.SS.UserModel;
3 3 using NPOI.XSSF.UserModel;
4 4 using System.Data;
... ...
sql/添加会员生日类型字段.sql deleted
1   --- 为会员信息表(lq_khxx)添加生日类型字段
2   --- 用于标识会员过阳历生日还是农历生日
3   --- 执行时间:2026-02-05
4   --- 字段命名规范:F_ 开头,使用标准英文命名,不用拼音
5   -
6   -ALTER TABLE `lq_khxx`
7   -ADD COLUMN `F_BirthdayType` INT(11) DEFAULT 0 COMMENT '生日类型(0-阳历生日,1-农历生日)' AFTER `yinlsr`;