⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 agent.java

📁 一个关于物流的管理系统
💻 JAVA
字号:
package com.shunshi.ssh.entity;

import java.util.Date;


/**
 * Agent entity. @author MyEclipse Persistence Tools
 */

public class Agent  implements java.io.Serializable {


    // Fields    

     private Integer id;
     private String title;
     private String startZone;
     private String endZone;
     private String source;
     private String target;
     private String province;
     private String city;
     private String town;
     private String agentcompany;
     private String contact;
     private String telephone;
     private Date deadline;
     private String remarks;
     private Integer state;
     private Date publishDate;
     private Integer userId;
     private String type;
     private Integer infotype;


    // Constructors

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

    
    /** full constructor */
    public Agent(String title, String startZone, String endZone, String source, String target, String province, String city, String town, String agentcompany, String contact, String telephone, Date deadline, String remarks, Integer state, Date publishDate, Integer userId, String type, Integer infotype) {
        this.title = title;
        this.startZone = startZone;
        this.endZone = endZone;
        this.source = source;
        this.target = target;
        this.province = province;
        this.city = city;
        this.town = town;
        this.agentcompany = agentcompany;
        this.contact = contact;
        this.telephone = telephone;
        this.deadline = deadline;
        this.remarks = remarks;
        this.state = state;
        this.publishDate = publishDate;
        this.userId = userId;
        this.type = type;
        this.infotype = infotype;
    }

   
    // Property accessors

    public Integer getId() {
        return this.id;
    }
    
    public void setId(Integer id) {
        this.id = id;
    }

    public String getTitle() {
        return this.title;
    }
    
    public void setTitle(String title) {
        this.title = title;
    }

    public String getStartZone() {
        return this.startZone;
    }
    
    public void setStartZone(String startZone) {
        this.startZone = startZone;
    }

    public String getEndZone() {
        return this.endZone;
    }
    
    public void setEndZone(String endZone) {
        this.endZone = endZone;
    }

    public String getSource() {
        return this.source;
    }
    
    public void setSource(String source) {
        this.source = source;
    }

    public String getTarget() {
        return this.target;
    }
    
    public void setTarget(String target) {
        this.target = target;
    }

    public String getProvince() {
        return this.province;
    }
    
    public void setProvince(String province) {
        this.province = province;
    }

    public String getCity() {
        return this.city;
    }
    
    public void setCity(String city) {
        this.city = city;
    }

    public String getTown() {
        return this.town;
    }
    
    public void setTown(String town) {
        this.town = town;
    }

    public String getAgentcompany() {
        return this.agentcompany;
    }
    
    public void setAgentcompany(String agentcompany) {
        this.agentcompany = agentcompany;
    }

    public String getContact() {
        return this.contact;
    }
    
    public void setContact(String contact) {
        this.contact = contact;
    }

    public String getTelephone() {
        return this.telephone;
    }
    
    public void setTelephone(String telephone) {
        this.telephone = telephone;
    }

    public Date getDeadline() {
        return this.deadline;
    }
    
    public void setDeadline(Date deadline) {
        this.deadline = deadline;
    }

    public String getRemarks() {
        return this.remarks;
    }
    
    public void setRemarks(String remarks) {
        this.remarks = remarks;
    }

    public Integer getState() {
        return this.state;
    }
    
    public void setState(Integer state) {
        this.state = state;
    }

    public Date getPublishDate() {
        return this.publishDate;
    }
    
    public void setPublishDate(Date publishDate) {
        this.publishDate = publishDate;
    }

    public Integer getUserId() {
        return this.userId;
    }
    
    public void setUserId(Integer userId) {
        this.userId = userId;
    }

    public String getType() {
        return this.type;
    }
    
    public void setType(String type) {
        this.type = type;
    }

    public Integer getInfotype() {
        return this.infotype;
    }
    
    public void setInfotype(Integer infotype) {
        this.infotype = infotype;
    }
   








}

⌨️ 快捷键说明

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