企业列表出来了
parent
7997780ecc
commit
d44a4c9aa4
|
@ -6,7 +6,6 @@
|
|||
<component name="ChangeListManager">
|
||||
<list default="true" id="72651396-d9d2-4022-b080-e21d75d1bedb" name="更改" comment="企业列表出来了">
|
||||
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
|
||||
<change beforePath="$PROJECT_DIR$/cloud-market-server/src/main/java/com/muyu/market/controller/SysFirminfoController.java" beforeDir="false" afterPath="$PROJECT_DIR$/cloud-market-server/src/main/java/com/muyu/market/controller/SysFirminfoController.java" afterDir="false" />
|
||||
</list>
|
||||
<option name="SHOW_DIALOG" value="false" />
|
||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||
|
@ -192,13 +191,8 @@
|
|||
<workItem from="1725843691730" duration="13942000" />
|
||||
<workItem from="1725886318916" duration="1604000" />
|
||||
<workItem from="1725891311546" duration="707000" />
|
||||
</task>
|
||||
<task id="LOCAL-00035" summary="企业列表出来了">
|
||||
<created>1725537729463</created>
|
||||
<option name="number" value="00035" />
|
||||
<option name="presentableId" value="LOCAL-00035" />
|
||||
<option name="project" value="LOCAL" />
|
||||
<updated>1725537729463</updated>
|
||||
<workItem from="1725899258178" duration="357000" />
|
||||
<workItem from="1725929516396" duration="141000" />
|
||||
</task>
|
||||
<task id="LOCAL-00036" summary="企业列表出来了">
|
||||
<created>1725553177889</created>
|
||||
|
@ -536,7 +530,14 @@
|
|||
<option name="project" value="LOCAL" />
|
||||
<updated>1725887015623</updated>
|
||||
</task>
|
||||
<option name="localTasksCounter" value="84" />
|
||||
<task id="LOCAL-00084" summary="企业列表出来了">
|
||||
<created>1725899330290</created>
|
||||
<option name="number" value="00084" />
|
||||
<option name="presentableId" value="LOCAL-00084" />
|
||||
<option name="project" value="LOCAL" />
|
||||
<updated>1725899330290</updated>
|
||||
</task>
|
||||
<option name="localTasksCounter" value="85" />
|
||||
<servers />
|
||||
</component>
|
||||
<component name="TypeScriptGeneratedFilesManager">
|
||||
|
|
|
@ -7,6 +7,7 @@ import com.alipay.api.DefaultAlipayClient;
|
|||
import com.alipay.api.request.AlipayTradePagePayRequest;
|
||||
import com.alipay.easysdk.factory.Factory;
|
||||
import com.muyu.common.core.domain.Result;
|
||||
import com.muyu.common.security.annotation.RequiresPermissions;
|
||||
import com.muyu.common.security.utils.SecurityUtils;
|
||||
|
||||
import com.muyu.market.config.AliPayConfig;
|
||||
|
@ -38,6 +39,7 @@ public class AliPayController {
|
|||
private static final String CHARSET ="utf-8";
|
||||
private static final String SIGN_TYPE ="RSA2";
|
||||
|
||||
@RequiresPermissions("market:alipay:pay")
|
||||
@GetMapping("/pay")
|
||||
@ResponseBody
|
||||
public Result pay(@Validated AliPay aliPay, HttpServletResponse httpResponse) throws Exception {
|
||||
|
|
|
@ -40,6 +40,7 @@ public class MyApiController extends BaseController
|
|||
@Resource
|
||||
private IMyApiService myApiService;
|
||||
|
||||
@RequiresPermissions("api:api:upd")
|
||||
@PostMapping("/upd")
|
||||
public Result updByUserIdAndApiId(@RequestBody MyApi myApi) {
|
||||
if(myApi.getMyNum()==0){
|
||||
|
|
|
@ -39,6 +39,7 @@ public class SysFirminfoController extends BaseController
|
|||
@Autowired
|
||||
private ISysFirminfoService sysFirminfoService;
|
||||
|
||||
@RequiresPermissions("market:firminfo:upd")
|
||||
@PostMapping("/upd/{firmScore}")
|
||||
public Result upd(@PathVariable(value = "firmScore") Double firmScore) {
|
||||
Long adminsid = SecurityUtils.getUserId();
|
||||
|
|
Loading…
Reference in New Issue