puzhibing
2024-01-30 03f1f3372a10a08f96f3308bfa099e86a55046d0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.ruoyi.system.domain.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author jqs34
 * @ClassName AppAgreementVo
 * @description: TODO
 * @date 2023年03月07日
 * @version: 1.0
 */
@Data
public class AppAgreementVo {
 
    @ApiModelProperty(value = "协议id")
    private Long agreementId;
 
    @ApiModelProperty(value = "协议内容")
    private String agreementContent;
}