卖家红点
This commit is contained in:
@@ -0,0 +1,22 @@
|
|||||||
|
package com.aida.seller.module.designer.vo;
|
||||||
|
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设计师售卖资格检查结果VO
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@Schema(description = "设计师售卖资格检查结果")
|
||||||
|
public class DesignerCheckVO implements Serializable {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 1L;
|
||||||
|
|
||||||
|
@Schema(description = "是否有售卖资格")
|
||||||
|
private Boolean hasQualification;
|
||||||
|
|
||||||
|
@Schema(description = "是否首次进入卖家系统: 0-否, 1-是")
|
||||||
|
private Integer firstEnter;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user