huliguo
2025-04-18 34f741f39e22bf48df33321230380b40c23110c3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.ruoyi.account.dto;
 
import io.swagger.annotations.ApiModelProperty;
import io.swagger.annotations.ApiParam;
import lombok.Data;
import org.springframework.web.bind.annotation.RequestParam;
 
@Data
public class ApplyForAdmissionListDTO {
 
    @ApiModelProperty("商家名称")
    private String shopName;
    @ApiModelProperty("店长姓名")
    private String shopManager;
    @ApiModelProperty("店长手机号")
    private String phone;
    @ApiModelProperty("状态:0-待审核,1-审核通过,2-审核不通过")
    private Integer status;
}