| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- package sanyangwl.pro.sanyang.config;
- import java.util.*;
- /**
- * 功能:
- * 作者:hanxue
- * 日期:2025/11/11 16:32
- */
- public final class FormFieldLabels {
- private FormFieldLabels() {
- // 私有构造,防止实例化
- }
- public static final Map<String, String> KEY_TO_LABEL;
- static {
- Map<String, String> temp = new HashMap<>();
- temp.put("employeeField_mb7zu6qb", "申请人");
- temp.put("applyDept", "申请部门");
- temp.put("applyTime", "申请日期");
- temp.put("textField_mcog8v86", "关联申请单");
- temp.put("selectField_mbdp8h0o", "发票抬头");
- temp.put("radioField_mb7zu6pz", "是否推送凭证");
- temp.put("textField_mbrt9xg4", "付款科目");
- temp.put("textField_mbhdyeq9", "制单日期");
- temp.put("selectField_mfdo6rvo", "付款方式");
- temp.put("note", "付款用途");
- temp.put("fromAccount", "付款账号");
- temp.put("fromAccountName", "付款账户名");
- temp.put("textField_mb7zu6q5", "供应商");
- temp.put("numberField_mb7zu6q1", "报销金额(元)");
- temp.put("textField_mb7zu6q2", "费用类型");
- temp.put("dateField_mbdpen3v", "费用发生日期");
- temp.put("textField_mb7zu6q3", "费用说明");
- temp.put("textField_mbqacm31", "发票类型");
- temp.put("numberField_mbqacm32", "税额(元)");
- temp.put("numberField_mbqacm33", "不含税金额(元)");
- temp.put("numberField_mhszk922", "付款总额(元)");
- temp.put("selectField_mbg6p8cc", "申请类型");
- temp.put("tableField_mb7zu6q0", "明细");
- temp.put("toAccountCode", "收款账号");
- temp.put("toAccountName", "收款账户名");
- temp.put("toBankName", "收款银行支行");
- // temp.put("textField_mb7zu6qd", "关联审批编号");
- // 转为不可变 map,防止误修改
- KEY_TO_LABEL = Collections.unmodifiableMap(temp);
- }
- }
|