| package com.matrix.system.app.vo; | 
|   | 
| import io.swagger.annotations.ApiModel; | 
| import io.swagger.annotations.ApiModelProperty; | 
|   | 
| @ApiModel(value = "SkinCheckDiagnoseItemVo", description = "诊断结果返回参数类") | 
| public class SkinCheckDiagnoseItemVo { | 
|   | 
|     @ApiModelProperty(value = "标题") | 
|     private String title; | 
|   | 
|     @ApiModelProperty(value = "百分比") | 
|     private Double percentage; | 
|   | 
|     public String getTitle() { | 
|         return title; | 
|     } | 
|   | 
|     public void setTitle(String title) { | 
|         this.title = title; | 
|     } | 
|   | 
|   | 
|     public Double getPercentage() { | 
|         return percentage; | 
|     } | 
|   | 
|     public void setPercentage(Double percentage) { | 
|         this.percentage = percentage; | 
|     } | 
| } |