@PUT
  @Path("{id}")
  public ExtJSResponse edit(@PathParam("id") Integer id, BillAnnex billAnnex) {

    billAnnexMapper.updateByPrimaryKeySelective(billAnnex);
    return ExtJSResponse.successRes();
  }