-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change-Id: I305c339df0eb82b6bdad6e782c4ef30029a28d46
Signed-off-by: helppass <[email protected]>
- Loading branch information
Showing
13 changed files
with
303 additions
and
5,331 deletions.
There are no files selected for viewing
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
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,60 @@ | ||
package icity.cgmp.info; | ||
|
||
import javax.persistence.Column; | ||
import javax.persistence.Entity; | ||
import javax.persistence.GeneratedValue; | ||
import javax.persistence.GenerationType; | ||
import javax.persistence.Id; | ||
import javax.persistence.Table; | ||
|
||
@Entity | ||
@Table(name = "t_cp_fee_point") | ||
public class CPFeePoint { | ||
|
||
private long id; | ||
|
||
private String name; | ||
|
||
/** | ||
* »ñÈ¡ id | ||
* | ||
* @return id | ||
*/ | ||
@Id | ||
@Column(name = "id") | ||
@GeneratedValue(strategy = GenerationType.AUTO) | ||
public long getId() { | ||
return id; | ||
} | ||
|
||
/** | ||
* »ñÈ¡ name | ||
* | ||
* @return name | ||
*/ | ||
@Column(name = "name") | ||
public String getName() { | ||
return name; | ||
} | ||
|
||
/** | ||
* ÉèÖÃ id | ||
* | ||
* @param id | ||
* id | ||
*/ | ||
public void setId(long id) { | ||
this.id = id; | ||
} | ||
|
||
/** | ||
* ÉèÖÃ name | ||
* | ||
* @param name | ||
* name | ||
*/ | ||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
} |
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,60 @@ | ||
package icity.cgmp.info; | ||
|
||
import javax.persistence.Column; | ||
import javax.persistence.Entity; | ||
import javax.persistence.GeneratedValue; | ||
import javax.persistence.GenerationType; | ||
import javax.persistence.Id; | ||
import javax.persistence.Table; | ||
|
||
@Entity | ||
@Table(name = "t_cp_fee_record") | ||
public class CPFeeRecord { | ||
|
||
private long id; | ||
|
||
private String name; | ||
|
||
/** | ||
* »ñÈ¡ id | ||
* | ||
* @return id | ||
*/ | ||
@Id | ||
@Column(name = "id") | ||
@GeneratedValue(strategy = GenerationType.AUTO) | ||
public long getId() { | ||
return id; | ||
} | ||
|
||
/** | ||
* »ñÈ¡ name | ||
* | ||
* @return name | ||
*/ | ||
@Column(name = "name") | ||
public String getName() { | ||
return name; | ||
} | ||
|
||
/** | ||
* ÉèÖÃ id | ||
* | ||
* @param id | ||
* id | ||
*/ | ||
public void setId(long id) { | ||
this.id = id; | ||
} | ||
|
||
/** | ||
* ÉèÖÃ name | ||
* | ||
* @param name | ||
* name | ||
*/ | ||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
} |
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,60 @@ | ||
package icity.cgmp.info; | ||
|
||
import javax.persistence.Column; | ||
import javax.persistence.Entity; | ||
import javax.persistence.GeneratedValue; | ||
import javax.persistence.GenerationType; | ||
import javax.persistence.Id; | ||
import javax.persistence.Table; | ||
|
||
@Entity | ||
@Table(name = "t_cp_info") | ||
public class CPInfo { | ||
|
||
private long id; | ||
|
||
private String name; | ||
|
||
/** | ||
* »ñÈ¡ id | ||
* | ||
* @return id | ||
*/ | ||
@Id | ||
@Column(name = "id") | ||
@GeneratedValue(strategy = GenerationType.AUTO) | ||
public long getId() { | ||
return id; | ||
} | ||
|
||
/** | ||
* »ñÈ¡ name | ||
* | ||
* @return name | ||
*/ | ||
@Column(name = "name") | ||
public String getName() { | ||
return name; | ||
} | ||
|
||
/** | ||
* ÉèÖÃ id | ||
* | ||
* @param id | ||
* id | ||
*/ | ||
public void setId(long id) { | ||
this.id = id; | ||
} | ||
|
||
/** | ||
* ÉèÖÃ name | ||
* | ||
* @param name | ||
* name | ||
*/ | ||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
} |
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,60 @@ | ||
package icity.cgmp.info; | ||
|
||
import javax.persistence.Column; | ||
import javax.persistence.Entity; | ||
import javax.persistence.GeneratedValue; | ||
import javax.persistence.GenerationType; | ||
import javax.persistence.Id; | ||
import javax.persistence.Table; | ||
|
||
@Entity | ||
@Table(name = "t_sp_info") | ||
public class SPInfo { | ||
|
||
private long id; | ||
|
||
private String name; | ||
|
||
/** | ||
* »ñÈ¡ id | ||
* | ||
* @return id | ||
*/ | ||
@Id | ||
@Column(name = "id") | ||
@GeneratedValue(strategy = GenerationType.AUTO) | ||
public long getId() { | ||
return id; | ||
} | ||
|
||
/** | ||
* »ñÈ¡ name | ||
* | ||
* @return name | ||
*/ | ||
@Column(name = "name") | ||
public String getName() { | ||
return name; | ||
} | ||
|
||
/** | ||
* ÉèÖÃ id | ||
* | ||
* @param id | ||
* id | ||
*/ | ||
public void setId(long id) { | ||
this.id = id; | ||
} | ||
|
||
/** | ||
* ÉèÖÃ name | ||
* | ||
* @param name | ||
* name | ||
*/ | ||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
} |
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,60 @@ | ||
package icity.cgmp.info; | ||
|
||
import javax.persistence.Column; | ||
import javax.persistence.Entity; | ||
import javax.persistence.GeneratedValue; | ||
import javax.persistence.GenerationType; | ||
import javax.persistence.Id; | ||
import javax.persistence.Table; | ||
|
||
@Entity | ||
@Table(name = "t_sp_sync_rule") | ||
public class SPSyncRule { | ||
|
||
private long id; | ||
|
||
private String name; | ||
|
||
/** | ||
* »ñÈ¡ id | ||
* | ||
* @return id | ||
*/ | ||
@Id | ||
@Column(name = "id") | ||
@GeneratedValue(strategy = GenerationType.AUTO) | ||
public long getId() { | ||
return id; | ||
} | ||
|
||
/** | ||
* »ñÈ¡ name | ||
* | ||
* @return name | ||
*/ | ||
@Column(name = "name") | ||
public String getName() { | ||
return name; | ||
} | ||
|
||
/** | ||
* ÉèÖÃ id | ||
* | ||
* @param id | ||
* id | ||
*/ | ||
public void setId(long id) { | ||
this.id = id; | ||
} | ||
|
||
/** | ||
* ÉèÖÃ name | ||
* | ||
* @param name | ||
* name | ||
*/ | ||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
} |
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
2 changes: 1 addition & 1 deletion
2
...in/java/icity/cgmp/info/TestUserInfo.java → ...in/java/icity/cgmp/test/TestUserInfo.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
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