DistributionCurrencyModel.java
1.2 KB
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
package com.ruoyi.system.domain;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
@ApiModel("通用模型分配")
public class DistributionCurrencyModel {
@ApiModelProperty("产品id")
private Integer product_id;
@ApiModelProperty("mqtt用户名/设备类型")
private String mqtt_username;
@ApiModelProperty("模型id集合(多个用英文逗号分割)")
private Integer[] model_ids;
@ApiModelProperty("模型id集合(多个用英文逗号分割)")
private Integer model_id;
public Integer getModel_id() {
return model_id;
}
public void setModel_id(Integer model_id) {
this.model_id = model_id;
}
public Integer getProduct_id() {
return product_id;
}
public void setProduct_id(Integer product_id) {
this.product_id = product_id;
}
public String getMqtt_username() {
return mqtt_username;
}
public void setMqtt_username(String mqtt_username) {
this.mqtt_username = mqtt_username;
}
public Integer[] getModel_ids() {
return model_ids;
}
public void setModel_ids(Integer[] model_ids) {
this.model_ids = model_ids;
}
}