-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ad5b924
commit 4180ccd
Showing
3 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package org.kpmp.slides; | ||
|
||
import org.springframework.data.mongodb.core.mapping.Document; | ||
|
||
@Document(collection = "patients") | ||
public class OpenSlide { | ||
|
||
private String mpp_x; | ||
private String mpp_y; | ||
|
||
public String getMpp_x() { | ||
return mpp_x; | ||
} | ||
|
||
public void setMpp_x(String mpp_x) { | ||
this.mpp_x = mpp_x; | ||
} | ||
|
||
public String getMpp_y() { | ||
return mpp_y; | ||
} | ||
|
||
public void setMpp_y(String mpp_y) { | ||
this.mpp_y = mpp_y; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters