Sign in

潘钊 / bsth_control · Files

GitLab

  • Go to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Builds 0
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • bsth_control
  • ..
  • service
  • SystemParamService.java
  • 1.加入越权和sql注入防御机制
    07243d32
    王通 authored
    2025-07-28 14:04:03 +0800  
    Browse Code »
SystemParamService.java 225 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
package com.bsth.service;

import com.bsth.entity.SystemParam;

/**
 * @author Hill
 */
public interface SystemParamService extends BaseService<SystemParam, Integer> {

    void refresh();

    String getValue(String key);
}