1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
| package com.xmzs.midjourney.domain;
|
| import lombok.Data;
| import org.springframework.boot.context.properties.ConfigurationProperties;
| import org.springframework.stereotype.Component;
|
| /**
| * 绘画费用信息
| *
| * @author Admin
| */
| @Data
| @Component
| @ConfigurationProperties(prefix = "mj")
| public class MjPriceConfig {
| /**
| * 放大图像
| */
| private String upsample;
|
| /**
| * 变化
| */
| private String change;
|
| /**
| * 图生图
| */
| private String blend;
|
| /**
| * 图生文
| */
| private String describe;
|
| /**
| * 文生图
| */
| private String imagine;
|
| /**
| * 局部重绘
| */
| private String inpaint;
|
| /**
| * 提示词分析
| */
| private String shorten;
|
| /**
| * 换脸
| */
| private String faceSwapping;
|
| }
|
|