软适配新增SuitRetryModel
parent
976369fa10
commit
a43b17841f
@ -0,0 +1,24 @@
|
||||
package cn.estsh.i3plus.pojo.model.softswitch;
|
||||
|
||||
import cn.estsh.i3plus.pojo.softswitch.bean.BsSuitCase;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
|
||||
|
||||
/**
|
||||
* @author ns
|
||||
* @create 2021/12/22 0022 下午 13:39
|
||||
*/
|
||||
@Data
|
||||
@ApiModel("重试类型model")
|
||||
public class SuitRetryModel {
|
||||
@ApiParam(value = "适配器代码")
|
||||
private String suitCaseCode;
|
||||
|
||||
@ApiParam(value = "适配记录id")
|
||||
private Long bsSuitRecordId;
|
||||
|
||||
@ApiParam(value = "适配器")
|
||||
private BsSuitCase bsSuitCase;
|
||||
}
|
Loading…
Reference in New Issue