Add files via upload
initial commit
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
package com.example.match.query;
|
||||
|
||||
import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Id;
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author simar bawa
|
||||
*/
|
||||
|
||||
@Entity
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
public class InquirySummaryView {
|
||||
|
||||
@Id
|
||||
UUID id;
|
||||
String firstName;
|
||||
String initialState;
|
||||
String currentState;
|
||||
Integer score;
|
||||
}
|
||||
Reference in New Issue
Block a user