test master 변경

This commit is contained in:
현성필
2024-01-23 11:24:09 +09:00
parent 75a695897d
commit 91e902af25
121 changed files with 329 additions and 338 deletions
@@ -0,0 +1,63 @@
package com.eactive.testmaster.api.entity;
import javax.persistence.*;
@Entity
@Table(name = "MOCK_RESPONSE_CONDITION")
public class MockCondition {
@ManyToOne
@JoinColumn(name = "MOCK_RESPONSE_ID", nullable = false)
private MockResponse mockResponse;
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE)
private Long id;
private String type;
private String key;
private String value;
public MockResponse getMockResponse() {
return mockResponse;
}
public void setMockResponse(MockResponse mockResponse) {
this.mockResponse = mockResponse;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}