public void update(Discount discount) {
   jdbcTemplate.update(
       discount.generateUpdateQuery(),
       discount.getGoodsId(),
       discount.getStart(),
       discount.getEnd(),
       discount.getDiscount(),
       discount.getDescription(),
       discount.getCreatedDate(),
       discount.getCreatedBy(),
       discount.getUpdatedDate(),
       discount.getUpdatedBy(),
       discount.getGoodsId());
 }