Merge remote-tracking branch 'origin/dev' into test
commit
604b8821eb
@ -0,0 +1,33 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.model.softswitch;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.softswitch.bean.BsSuitFile;
|
||||||
|
import cn.estsh.i3plus.pojo.softswitch.bean.BsSuitRecord;
|
||||||
|
import io.swagger.annotations.ApiModel;
|
||||||
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : yunhao
|
||||||
|
* @CreateDate : 2020-09-28 17:48
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@ApiModel("适配记录模型")
|
||||||
|
public class SuitRecordModel {
|
||||||
|
|
||||||
|
@ApiModelProperty("主记录")
|
||||||
|
private BsSuitRecord bsSuitRecord;
|
||||||
|
|
||||||
|
@ApiModelProperty("适配文件")
|
||||||
|
private BsSuitFile bsSuitFile;
|
||||||
|
|
||||||
|
public SuitRecordModel() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public SuitRecordModel(BsSuitRecord bsSuitRecord, BsSuitFile bsSuitFile) {
|
||||||
|
this.bsSuitRecord = bsSuitRecord;
|
||||||
|
this.bsSuitFile = bsSuitFile;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue