Example #1
0
  @Transactional(readOnly = false)
  public void save(OaNotify oaNotify) {
    super.save(oaNotify);

    // 更新发送接受人记录
    oaNotifyRecordDao.deleteByOaNotifyId(oaNotify.getId());
    if (oaNotify.getOaNotifyRecordList().size() > 0) {
      oaNotifyRecordDao.insertAll(oaNotify.getOaNotifyRecordList());
    }
  }
Example #2
0
 @Transactional(readOnly = false)
 public void delete(Favorite favorite) {
   super.delete(favorite);
 }
Example #3
0
 @Transactional(readOnly = false)
 public void save(Favorite favorite) {
   super.save(favorite);
 }
Example #4
0
 @Transactional(readOnly = false)
 public void delete(TestData testData) {
   super.delete(testData);
 }
Example #5
0
 @Transactional(readOnly = false)
 public void save(TestData testData) {
   super.save(testData);
 }