有没有一种方法可以定义带有字段的swagger模型,可以写(POST)但不能更新(PUT)
/**
* @swagger
* definitions:
* Service:
* type: object
* required:
* - id
* properties:
* id:
* type: string
* readOnly: true
* name: <--------- ONLY WRITE NOT UPDATE
* type: string
*/