jiangqs
2023-04-20 437a8ae4bcca79e8886662a40c11f499fea1a25e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.hrt.system.domain.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author jqs34
 * @ClassName AppAgreementDto
 * @description: TODO
 * @date 2023年03月07日
 * @version: 1.0
 */
@Data
public class AppAgreementDto  extends AppBaseDto{
 
 
    @ApiModelProperty(value = "协议类型1用户协议 2隐私协议")
    private Integer type;
 
}