-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #72 from yindz/dev
Dev
- Loading branch information
Showing
5 changed files
with
531 additions
and
190 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
56 changes: 56 additions & 0 deletions
56
src/main/java/com/apifan/common/random/entity/GreekAlphabet.java
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,56 @@ | ||
package com.apifan.common.random.entity; | ||
|
||
/** | ||
* 希腊字母 | ||
* 在数学/科学/工程领域中需要用到 | ||
* | ||
* @author yin | ||
* @since 1.0.20 | ||
*/ | ||
public class GreekAlphabet { | ||
|
||
/** | ||
* 大写形式 | ||
*/ | ||
private String upperCase; | ||
|
||
/** | ||
* 小写形式 | ||
*/ | ||
private String lowerCase; | ||
|
||
/** | ||
* 读音 | ||
*/ | ||
private String spell; | ||
|
||
public GreekAlphabet(String upperCase, String lowerCase, String spell) { | ||
this.upperCase = upperCase; | ||
this.lowerCase = lowerCase; | ||
this.spell = spell; | ||
} | ||
|
||
public String getUpperCase() { | ||
return upperCase; | ||
} | ||
|
||
public void setUpperCase(String upperCase) { | ||
this.upperCase = upperCase; | ||
} | ||
|
||
public String getLowerCase() { | ||
return lowerCase; | ||
} | ||
|
||
public void setLowerCase(String lowerCase) { | ||
this.lowerCase = lowerCase; | ||
} | ||
|
||
public String getSpell() { | ||
return spell; | ||
} | ||
|
||
public void setSpell(String spell) { | ||
this.spell = spell; | ||
} | ||
} |
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
Oops, something went wrong.