3 changed files with 51 additions and 1 deletions
@ -0,0 +1,37 @@ |
|||||
|
package com.bnyer.common.core.dto; |
||||
|
|
||||
|
import io.swagger.annotations.ApiModel; |
||||
|
import io.swagger.annotations.ApiModelProperty; |
||||
|
import lombok.Getter; |
||||
|
import lombok.Setter; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
|
||||
|
@Getter |
||||
|
@Setter |
||||
|
@ApiModel("情侣头像接收类") |
||||
|
public class TextToImgLoveDto implements Serializable { |
||||
|
|
||||
|
|
||||
|
@ApiModelProperty(value="内容提示词") |
||||
|
private String prompt; |
||||
|
|
||||
|
@ApiModelProperty(value="场景提示词") |
||||
|
private String scenePrompt; |
||||
|
|
||||
|
@ApiModelProperty(value="风格名称") |
||||
|
private String styleName; |
||||
|
|
||||
|
@ApiModelProperty(value="绘图者id") |
||||
|
private Long painterId; |
||||
|
|
||||
|
@ApiModelProperty(value="绘图者昵称") |
||||
|
private String painterName; |
||||
|
|
||||
|
@ApiModelProperty(value="应用") |
||||
|
private String appType; |
||||
|
|
||||
|
@ApiModelProperty(value="平台") |
||||
|
private String platform; |
||||
|
} |
||||
Loading…
Reference in new issue