x-ref-external可以为yaml里的数据结构指定一个已有的数据类,例如:
PageVO:x-ref-external: com.lee.PageVOproperties:totalRows:type: stringdescription: 总条数curPage:type: stringdescription: 当前页pageSize:type: stringdescription: 页大小
指定了x-ref-external的数据结构里的properties只是起到一个方便阅读的作用,并不会根据properties真的生成属性。
然后,注意在引用的时候要x-imports:
MyResponse:type: objectproperties:data:items:$ref: '#/definitions/DataInfo'description: 返回业务数据type: arraycode:type: stringdescription: 错误码message:type: stringdescription: 错误提示pageVO:description: 分页信息$ref: '#/definitions/PageVO'description: 查询响应类x-imports:- com.lee.PageVO