Commit 264eecad authored by alex yao's avatar alex yao

fix: 修复重新上架,应用分类没更新

parent a70ec9bb
...@@ -109,6 +109,9 @@ public class BizAgentApplicationMallServiceImpl extends BaseServiceImpl ...@@ -109,6 +109,9 @@ public class BizAgentApplicationMallServiceImpl extends BaseServiceImpl
if (entity.getIsSale() != null) { if (entity.getIsSale() != null) {
model.setIsSale(entity.getIsSale()); model.setIsSale(entity.getIsSale());
} }
if (entity.getCategoryId() != null) {
model.setCategoryId(entity.getCategoryId());
}
if (entity.getPopularity() != null) { if (entity.getPopularity() != null) {
model.setPopularity(entity.getPopularity()); model.setPopularity(entity.getPopularity());
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment