Compare commits
3 Commits
Author | SHA1 | Date |
---|---|---|
|
5f32ed7f6c | 1 year ago |
|
e942823b92 | 1 year ago |
|
8e6cc7f297 | 1 year ago |
@ -0,0 +1,56 @@
|
|||||||
|
package JavaBean;
|
||||||
|
public class Accountcxs {
|
||||||
|
|
||||||
|
private String useridcxs;
|
||||||
|
private String passwordcxs;
|
||||||
|
private String emallcxs;
|
||||||
|
private String namecxs;
|
||||||
|
private String countrycxs;
|
||||||
|
private String phonecxs;
|
||||||
|
public Accountcxs(){}
|
||||||
|
Accountcxs(String useridcxs, String passwordcxs, String emallcxs, String namecxs, String addrcxs, String countrycxs, String phonecxs){
|
||||||
|
this.countrycxs=countrycxs;
|
||||||
|
this.emallcxs=emallcxs;
|
||||||
|
this.namecxs=namecxs;
|
||||||
|
this.passwordcxs=passwordcxs;
|
||||||
|
this.phonecxs=phonecxs;
|
||||||
|
this.useridcxs=useridcxs;
|
||||||
|
}
|
||||||
|
public String getUseridcxs(){
|
||||||
|
return useridcxs;
|
||||||
|
}
|
||||||
|
public void setUseridcxs(String useridcxs) {
|
||||||
|
this.useridcxs = useridcxs;
|
||||||
|
}
|
||||||
|
public String getPasswordcxs(){
|
||||||
|
return passwordcxs;
|
||||||
|
}
|
||||||
|
public void setPasswordcxs(String passwordcxs){
|
||||||
|
this.passwordcxs=passwordcxs;
|
||||||
|
}
|
||||||
|
public String getNamecxs(){
|
||||||
|
return namecxs;
|
||||||
|
}
|
||||||
|
public void setNamecxs(String namecxs){
|
||||||
|
this.namecxs=namecxs;
|
||||||
|
}
|
||||||
|
public String getEmallcxs(){
|
||||||
|
return emallcxs;
|
||||||
|
}
|
||||||
|
public void setEmallcxs(String emallcxs){
|
||||||
|
this.emallcxs=emallcxs;
|
||||||
|
}
|
||||||
|
public String getCountrycxs(){
|
||||||
|
return countrycxs;
|
||||||
|
}
|
||||||
|
public void setCountrycxs(String countrycxs){
|
||||||
|
this.countrycxs=countrycxs;
|
||||||
|
}
|
||||||
|
public String getPhonecxs(){
|
||||||
|
return phonecxs;
|
||||||
|
}
|
||||||
|
public void setPhonecxs(String phonecxs){
|
||||||
|
this.phonecxs=phonecxs;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,26 @@
|
|||||||
|
package JavaBean;
|
||||||
|
|
||||||
|
import java.awt.*;
|
||||||
|
|
||||||
|
public class Pointercxs {
|
||||||
|
|
||||||
|
private int i=0;//第几行
|
||||||
|
private int j=0;//几列
|
||||||
|
private int x=0;//x坐标
|
||||||
|
private int y=0;//y坐标
|
||||||
|
private int h=36;//指示器的高
|
||||||
|
public Pointercxs(int i, int j, int x, int y){
|
||||||
|
this.i=i;
|
||||||
|
this.j=j;
|
||||||
|
this.x=x;
|
||||||
|
this.y=y;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void draw(Graphics p){
|
||||||
|
p.setColor(new Color(255,0,0));
|
||||||
|
p.drawRect(x-h/2,y-h/2,h,h);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,58 @@
|
|||||||
|
package JavaBean;
|
||||||
|
|
||||||
|
public class zhanjicxs {
|
||||||
|
String id;
|
||||||
|
String userid;
|
||||||
|
String shenglu;
|
||||||
|
String stiuation;
|
||||||
|
int time;
|
||||||
|
|
||||||
|
public zhanjicxs(String id, String userid, String shenglu, String stiuation, int time) {
|
||||||
|
this.id = id;
|
||||||
|
this.userid = userid;
|
||||||
|
this.shenglu = shenglu;
|
||||||
|
this.stiuation = stiuation;
|
||||||
|
this.time = time;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public String getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(String id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getUserid() {
|
||||||
|
return userid;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setUserid(String userid) {
|
||||||
|
this.userid = userid;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getShenglu() {
|
||||||
|
return shenglu;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setShenglu(String shenglu) {
|
||||||
|
this.shenglu = shenglu;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getStiuation() {
|
||||||
|
return stiuation;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setStiuation(String stiuation) {
|
||||||
|
this.stiuation = stiuation;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getTime() {
|
||||||
|
return time;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTime(int time) {
|
||||||
|
this.time = time;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue