Commit ee903a3c authored by 李博今's avatar 李博今

Merge branch 'V2.0.3' of http://103.249.252.28:90/lcy/education

# Conflicts:
#	src/main/java/org/rcisoft/business/bopinion/service/impl/BOpinionServiceImpl.java
parents 77c8eecb 56a5fff2
......@@ -52,14 +52,10 @@ public class BOpinionServiceImpl implements BOpinionService{
@Transactional(propagation = Propagation.REQUIRED,isolation = Isolation.DEFAULT)
@Override
public PersistModel save(String opinion,String id) {
BSubtask bSubtask = bOpinionRepository.querySubtaskInfo(id);
BOpinion bOpinion = new BOpinion();
bOpinion.setCommonBusinessId();
bOpinion.setOpinion(opinion);
bOpinion.setArrangeId(bSubtask.getArrangeId());
bOpinion.setSubtaskId(bSubtask.getBusinessId());
Date day = new Date();
bOpinion.setCreateDate(day);
bOpinion.setSlId(id);
UserUtil.setCurrentPersistOperation(bOpinion);
int line = bOpinionRepository.insertSelective(bOpinion);
return new PersistModel(line);
}
......
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