|
|
@@ -48,6 +48,12 @@ public class TaxSourceController extends BaseController {
|
|
|
return HttpResult.ok(insureCompany);
|
|
|
}
|
|
|
|
|
|
+ @GetMapping("/modifySort")
|
|
|
+ @ApiOperation("修改排序")
|
|
|
+ public HttpResult modifySort(String companyId,String sort){
|
|
|
+ return HttpResult.ok(taxSourceService.modifySort(companyId,sort) ? "修改排序成功" : "修改排序失败");
|
|
|
+ }
|
|
|
+
|
|
|
@GetMapping("/agreement")
|
|
|
@ApiOperation("获取协议")
|
|
|
public HttpResult agreement(String companyId) {
|