FormFieldLabels.java 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. package sanyangwl.pro.sanyang.config;
  2. import java.util.*;
  3. /**
  4. * 功能:
  5. * 作者:hanxue
  6. * 日期:2025/11/11 16:32
  7. */
  8. public final class FormFieldLabels {
  9. private FormFieldLabels() {
  10. // 私有构造,防止实例化
  11. }
  12. public static final Map<String, String> KEY_TO_LABEL;
  13. static {
  14. Map<String, String> temp = new HashMap<>();
  15. temp.put("employeeField_mb7zu6qb", "申请人");
  16. temp.put("applyDept", "申请部门");
  17. temp.put("applyTime", "申请日期");
  18. temp.put("textField_mcog8v86", "关联申请单");
  19. temp.put("selectField_mbdp8h0o", "发票抬头");
  20. temp.put("radioField_mb7zu6pz", "是否推送凭证");
  21. temp.put("textField_mbrt9xg4", "付款科目");
  22. temp.put("textField_mbhdyeq9", "制单日期");
  23. temp.put("selectField_mfdo6rvo", "付款方式");
  24. temp.put("note", "付款用途");
  25. temp.put("fromAccount", "付款账号");
  26. temp.put("fromAccountName", "付款账户名");
  27. temp.put("textField_mb7zu6q5", "供应商");
  28. temp.put("numberField_mb7zu6q1", "报销金额(元)");
  29. temp.put("textField_mb7zu6q2", "费用类型");
  30. temp.put("dateField_mbdpen3v", "费用发生日期");
  31. temp.put("textField_mb7zu6q3", "费用说明");
  32. temp.put("textField_mbqacm31", "发票类型");
  33. temp.put("numberField_mbqacm32", "税额(元)");
  34. temp.put("numberField_mbqacm33", "不含税金额(元)");
  35. temp.put("numberField_mhszk922", "付款总额(元)");
  36. temp.put("selectField_mbg6p8cc", "申请类型");
  37. temp.put("tableField_mb7zu6q0", "明细");
  38. temp.put("toAccountCode", "收款账号");
  39. temp.put("toAccountName", "收款账户名");
  40. temp.put("toBankName", "收款银行支行");
  41. // temp.put("textField_mb7zu6qd", "关联审批编号");
  42. // 转为不可变 map,防止误修改
  43. KEY_TO_LABEL = Collections.unmodifiableMap(temp);
  44. }
  45. }