|
|
|
|
109
|
for (int i = 0; i < list.size(); i++) {
|
109
|
for (int i = 0; i < list.size(); i++) {
|
110
|
Store store = storeMapper.selectByPrimaryKey(list.get(i).getId());
|
110
|
Store store = storeMapper.selectByPrimaryKey(list.get(i).getId());
|
111
|
// 存在赋值为空的情况,追加一次赋值
|
111
|
// 存在赋值为空的情况,追加一次赋值
|
|
|
112
|
+ // 2025.4.20 数据库增加默认为0的修改临时解决,此处其他项目中要注意
|
112
|
if (store.getLockFlag() == null || store.getLockFlag() == ""){
|
113
|
if (store.getLockFlag() == null || store.getLockFlag() == ""){
|
113
|
store.setLockFlag("0");
|
114
|
store.setLockFlag("0");
|
114
|
}
|
115
|
}
|