mirror of
https://gitee.com/youlaitech/youlai-mall.git
synced 2024-12-22 12:48:59 +08:00
feat:添加Seata实验室测试接口
This commit is contained in:
parent
7061bd0644
commit
1a9690b862
@ -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;*/
|
||||
|
||||
}
|
||||
|
@ -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);
|
||||
|
||||
}
|
||||
|
@ -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);
|
||||
|
||||
}
|
||||
|
@ -6,5 +6,7 @@ public interface SystemConstants {
|
||||
|
||||
Integer VISIBLE_SHOW_VALUE = 1;
|
||||
|
||||
String DEFAULT_USER_PASSWORD="123456";
|
||||
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user