|
|
@ -11,6 +11,7 @@ import org.hibernate.annotations.DynamicInsert;
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
import javax.persistence.Column;
|
|
|
|
import javax.persistence.Column;
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
|
|
|
import javax.persistence.Lob;
|
|
|
|
import javax.persistence.Table;
|
|
|
|
import javax.persistence.Table;
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
import javax.persistence.Transient;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.List;
|
|
|
@ -95,6 +96,7 @@ public class BsSuitRecord extends BaseBean {
|
|
|
|
@ApiParam(value = "适配结果")
|
|
|
|
@ApiParam(value = "适配结果")
|
|
|
|
private Integer suitResult;
|
|
|
|
private Integer suitResult;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Lob
|
|
|
|
@Column(name = "SUIT_MESSAGE")
|
|
|
|
@Column(name = "SUIT_MESSAGE")
|
|
|
|
@ApiParam(value = "适配信息")
|
|
|
|
@ApiParam(value = "适配信息")
|
|
|
|
private String suitMessage;
|
|
|
|
private String suitMessage;
|
|
|
@ -119,5 +121,9 @@ public class BsSuitRecord extends BaseBean {
|
|
|
|
@ApiParam(value = "适配请求记录")
|
|
|
|
@ApiParam(value = "适配请求记录")
|
|
|
|
private BsSuitRequestRecord bsSuitRequestRecord;
|
|
|
|
private BsSuitRequestRecord bsSuitRequestRecord;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Transient
|
|
|
|
|
|
|
|
@ApiParam(value = "适配请求文件列表")
|
|
|
|
|
|
|
|
private List<BsSuitFile> bsSuitFileList;
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|