feat:添加Seata实验室测试接口

This commit is contained in:
haoxr 2021-01-10 01:47:44 +08:00
parent 7061bd0644
commit 1a9690b862
4 changed files with 8 additions and 5 deletions

View File

@ -19,9 +19,10 @@ public class OmsOrder extends BaseEntity {
private Integer status;
private Integer source;
private String consignee;
private Integer sourceType;
/* private String consignee;
private String mobile;
@ -63,6 +64,6 @@ public class OmsOrder extends BaseEntity {
private Date gmtRefund;
private Date gmtConfirm;
private Date gmtConfirm;*/
}

View File

@ -22,7 +22,7 @@ public interface ProductFeignService {
/**
* 修改商品库存
*/
@PutMapping("/api.app/v1/sku/{id}/stock")
@PutMapping("/api.admin/v1/sku/{id}/stock")
Result updateStock(@PathVariable Long id, @RequestParam Integer num);
}

View File

@ -30,7 +30,7 @@ public interface MemberFeignService {
/**
* 修改会员积分
*/
@PutMapping("/api.app/v1/members/{id}/point")
@PutMapping("/api.admin/v1/members/{id}/point")
Result updatePoint(@PathVariable Long id, @RequestParam Integer num);
}

View File

@ -6,5 +6,7 @@ public interface SystemConstants {
Integer VISIBLE_SHOW_VALUE = 1;
String DEFAULT_USER_PASSWORD="123456";
}