Browse Source

机构付款流水记录增加一个注释,方便通过swagger查看

hgw 3 năm trước cách đây
mục cha
commit
1d17db7813

+ 2 - 0
mec-web/src/main/java/com/ym/mec/web/controller/TenantOrderRecordController.java

@@ -5,6 +5,7 @@ import com.ym.mec.biz.dal.dto.TenantOrderRecordDto;
 import com.ym.mec.biz.dal.entity.TenantOrderRecord;
 import com.ym.mec.biz.dal.entity.TenantOrderRecord;
 import com.ym.mec.biz.service.TenantOrderRecordService;
 import com.ym.mec.biz.service.TenantOrderRecordService;
 import com.ym.mec.common.controller.BaseController;
 import com.ym.mec.common.controller.BaseController;
+import io.swagger.annotations.Api;
 import io.swagger.annotations.ApiOperation;
 import io.swagger.annotations.ApiOperation;
 import org.springframework.web.bind.annotation.PostMapping;
 import org.springframework.web.bind.annotation.PostMapping;
 import org.springframework.web.bind.annotation.RequestBody;
 import org.springframework.web.bind.annotation.RequestBody;
@@ -20,6 +21,7 @@ import javax.annotation.Resource;
  * @since 2021-12-20 10:08:27
  * @since 2021-12-20 10:08:27
  */
  */
 @RestController
 @RestController
+@Api(tags = "机构付款记录")
 @RequestMapping("/tenantOrderRecord")
 @RequestMapping("/tenantOrderRecord")
 public class TenantOrderRecordController extends BaseController {
 public class TenantOrderRecordController extends BaseController {
     /**
     /**