Beispiel #1
0
  public void updateAf53(Af53DTO af53Dto) {
    if (af53Dto == null) {
      throw new BusinessException("F10301003BS-02:传入参数af53Dto为空!");
    }

    Af53 af53 = CommonHibernateDaoUtils.load(Af53.class, af53Dto.getAaz318());

    BeanTools.copyPropertiesIgnoreNull(af53Dto, af53);

    CommonHibernateDaoUtils.update(af53);
  }