SQLParameter.java 453 B

1234567891011121314151617181920
  1. package com.kcim.common.constants;
  2. /**
  3. * @program: CostAccount
  4. * @description:
  5. * @author: Wang.YS
  6. * @create: 2023-11-01 20:58
  7. **/
  8. public interface SQLParameter {
  9. String COMPUTE_DATE = "#compute_date";
  10. String HOSP_ID = "#hosp_id";
  11. String UNIT_CODE = "#unit_code";
  12. String HOSP_ID_CODE = "#hosp_id";
  13. String COMPUTE_DATE_CODE = "compute_date";
  14. String REPORT_TYPE_CODE = "report_type";
  15. String USER_CODE = "#user_code";
  16. }