abstractuserinfo.java

来自「实现网上订餐系统」· Java 代码 · 共 176 行

JAVA
176
字号
package com.eatery.po;

import java.util.HashSet;
import java.util.Set;


/**
 * AbstractUserInfo generated by MyEclipse - Hibernate Tools
 */

public abstract class AbstractUserInfo  implements java.io.Serializable {


    // Fields    

     private Integer UId;
     private String UName;
     private String UPass;
     private String URealName;
     private String UPaperCode;
     private Integer UAge;
     private Integer USex;
     private String UTel;
     private String UAddress;
     private String UEmail;
     private Set credits = new HashSet(0);
     private Set complainInfos =new HashSet(0);
     private Set orderInfos = new HashSet(0);


    // Constructors

    /** default constructor */
    public AbstractUserInfo() {
    }

	/** minimal constructor */
    public AbstractUserInfo(Integer UId, String UName, String UPass) {
        this.UId = UId;
        this.UName = UName;
        this.UPass = UPass;
    }
    
    /** full constructor */
    public AbstractUserInfo(Integer UId, String UName, String UPass, String URealName, String UPaperCode, Integer UAge, Integer USex, String UTel, String UAddress, String UEmail, Set credits, Set complainInfos,Set orderInfos) {
        this.UId = UId;
        this.UName = UName;
        this.UPass = UPass;
        this.URealName = URealName;
        this.UPaperCode = UPaperCode;
        this.UAge = UAge;
        this.USex = USex;
        this.UTel = UTel;
        this.UAddress = UAddress;
        this.UEmail = UEmail;
        this.credits = credits;
        this.complainInfos=complainInfos;
        this.orderInfos = orderInfos;
    }

   
    // Property accessors

    public Integer getUId() {
        return this.UId;
    }
    
    public void setUId(Integer UId) {
        this.UId = UId;
    }

    public String getUName() {
        return this.UName;
    }
    
    public void setUName(String UName) {
        this.UName = UName;
    }

    public String getUPass() {
        return this.UPass;
    }
    
    public void setUPass(String UPass) {
        this.UPass = UPass;
    }

    public String getURealName() {
        return this.URealName;
    }
    
    public void setURealName(String URealName) {
        this.URealName = URealName;
    }

    public String getUPaperCode() {
        return this.UPaperCode;
    }
    
    public void setUPaperCode(String UPaperCode) {
        this.UPaperCode = UPaperCode;
    }

    public Integer getUAge() {
        return this.UAge;
    }
    
    public void setUAge(Integer UAge) {
        this.UAge = UAge;
    }

    public Integer getUSex() {
        return this.USex;
    }
    
    public void setUSex(Integer USex) {
        this.USex = USex;
    }

    public String getUTel() {
        return this.UTel;
    }
    
    public void setUTel(String UTel) {
        this.UTel = UTel;
    }

    public String getUAddress() {
        return this.UAddress;
    }
    
    public void setUAddress(String UAddress) {
        this.UAddress = UAddress;
    }

    public String getUEmail() {
        return this.UEmail;
    }
    
    public void setUEmail(String UEmail) {
        this.UEmail = UEmail;
    }

    public Set getCredits() {
        return this.credits;
    }
    
    public void setCredits(Set credits) {
        this.credits = credits;
    }

    public Set getOrderInfos() {
        return this.orderInfos;
    }
    
    public void setOrderInfos(Set orderInfos) {
        this.orderInfos = orderInfos;
    }

	public Set getComplainInfos() {
		return complainInfos;
	}

	public void setComplainInfos(Set complainInfos) {
		this.complainInfos = complainInfos;
	}
   








}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?