All Known Implementing Classes:
BaBillFormatController

public interface BillFormatApi
Interface handling operations for BillFormat.
Since:
2302
  • Method Details

    • listBillFormat

      @RequestMapping(value="/billFormat", produces="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<List<BillFormat>> listBillFormat(@Valid @RequestParam(value="fields",required=false) @Valid String fields, @Valid @RequestParam(value="offset",required=false) @Valid Integer offset, @Valid @RequestParam(value="limit",required=false) @Valid Integer limit)
    • createBillFormat

      @RequestMapping(value="/billFormat", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=POST) org.springframework.http.ResponseEntity<BillFormat> createBillFormat(@Valid @RequestBody @Valid BillFormat billFormat)
    • patchBillFormat

      @RequestMapping(value="/billFormat/{id}", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=PATCH) org.springframework.http.ResponseEntity<BillFormat> patchBillFormat(@PathVariable("id") String id, @Valid @RequestBody @Valid BillFormat billFormat)
    • deleteBillFormat

      @RequestMapping(value="/billFormat/{id}", produces="application/json;charset=utf-8", method=DELETE) org.springframework.http.ResponseEntity<Void> deleteBillFormat(@PathVariable("id") String id)
    • retrieveBillFormat

      @RequestMapping(value="/billFormat/{id}", produces="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<BillFormat> retrieveBillFormat(@PathVariable("id") String id, @Valid @RequestParam(value="fields",required=false) @Valid String fields)