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;
|
}
|