|
|
@@ -317,6 +317,16 @@ public class CmsGroupRelationController {
|
|
|
return GatewayResponse.SUCCESS.newBuilder().toResult();
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 编辑代充备注
|
|
|
+ */
|
|
|
+ @PutMapping("/set/recharge/remark")
|
|
|
+ public Result<String> setRechargeRemark(@RequestBody GroupsRelation relation) {
|
|
|
+ String rechargeRemark = relation.getRechargeRemark();
|
|
|
+ groupsRelationMapper.update(null, Wrappers.lambdaUpdate(GroupsRelation.class).set(GroupsRelation::getRechargeRemark, rechargeRemark).eq(GroupsRelation::getId, relation.getId()));
|
|
|
+ return GatewayResponse.SUCCESS.newBuilder().toResult();
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* GPT代充卡密列表
|
|
|
*/
|