@Transactional public Integer guardar(CapaDto capaDto) throws Exception { Capa capa = new Capa(); BeanUtils.copyProperties(capaDto, capa); int rs = 0; Capa exiteCapa = capaMapper.selectByPrimaryKey(capa); if (exiteCapa != null) { rs = capaMapper.updateByPrimaryKeySelective(capa); } else { rs = capaMapper.insertSelective(capa); Integer srlIdCapa = capaMapper.lastSequence(); capaDto.setSrlIdCapa(srlIdCapa); } return rs; }
public Capa buscarById(CapaDto capaDto) throws Exception { Capa capa = new Capa(); BeanUtils.copyProperties(capaDto, capa); return capaMapper.selectByPrimaryKey(capa); }