feat(softswitch):ftp适配记录按文件名查询
parent
21f77a0e7b
commit
815daba16d
@ -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