This commit is contained in:
齐天大圣 2024-03-27 14:21:14 +08:00
parent 028beea5e6
commit c6568679f8

View File

@ -72,7 +72,7 @@ public class TagCodeRecordServiceImpl extends ServiceImpl<TagCodeRecordMapper, T
TagCode byId1 = tagCodeService.getById(tagCodeId);
String collection = byId1.getCollection();
String[] storeIds = collection.split("sn");
String s = storeIds[0] + "storeId=" + tagCodeRecordDTO.getStoreId() + "&sn" + storeIds[1];
String s = storeIds[0] + "storeId=" + tagCodeRecordDTO.getStoreId() + "&sn=" + byId1.getTagCodeSn();
//collection += "&storeId=" + tagCodeRecordDTO.getStoreId();
byId1.setCollection(s);
tagCodeService.updateById(byId1);