无关风月
2025-04-10 099ea14bba367fd86f0dde37d908f07cc04c3d39
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package com.ruoyi.system.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("退租申请")
public class RentalRetureApplyVO {
 
 
    /**
     * 合同id
     */
    @ApiModelProperty(value = "合同id")
    private String contractId;
 
    /**
     * 退租说明
     */
    @ApiModelProperty(value = "退租说明")
    private String reasonForReturn;
 
    /**
     * 图片
     */
    @ApiModelProperty(value = "图片")
    private String images;
 
}