• 大小: 8KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-05-13
  • 语言: Java
  • 标签: java  

资源简介

Java - 快递管理系统进阶 (网络编程, 客户端与服务器端, 服务器端与本地之间的数据交互) 基于之前的快递管理系统对其进行重构从而实现数据存储于客户端的分离

资源截图

代码片段和文件信息

package com.java.Express12.bean;

import java.io.Serializable;
import java.util.objects;

public class Express implements Serializable {
    private String number;
    private String company;
    private int code;
    private Location location;

    public Location getLocation() {
        return location;
    }

    public void setLocation(Location location) {
        this.location = location;
    }

    @Override
    public boolean equals(object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        Express express = (Express) o;
        return number.equals(express.number);
    }

    @Override
    public int hashCode() {
        return objects.hash(number);
    }

    @Override
    public String toString() {
        return “Express{“ +
                “number=‘“ + number + ‘\‘‘ +
                “ company=‘“ + company + ‘\‘‘ +
                “ code=“ + code +
                “ location=“ + location +
                ‘}‘;
    }

    public Express() {
    }

    public Express(String number String company int code) {
        this.number = number;
        this.company = company;
        this.code = code;
    }

    public String getNumber() {
        return number;
    }

    public void setNumber(String number) {
        this.number = number;
    }

    public String getCompany() {
        return company;
    }

    public void setCompany(String company) {
        this.company = company;
    }

    public int getCode() {
        return code;
    }

    public void setCode(int code) {
        this.code = code;
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2020-10-22 12:45  Express12\
     目录           0  2020-10-21 15:40  Express12\bean\
     文件        1739  2020-10-21 15:40  Express12\bean\Express.java
     文件         676  2020-10-21 15:40  Express12\bean\Location.java
     目录           0  2020-10-22 13:07  Express12\cloud\
     文件        5025  2020-10-22 13:07  Express12\cloud\Client.java
     文件        4980  2020-10-22 13:07  Express12\cloud\Server.java
     目录           0  2020-10-22 13:15  Express12\dao\
     文件        3182  2020-10-22 13:15  Express12\dao\ExpressDao.java
     目录           0  2020-10-22 12:47  Express12\util\
     文件        1459  2020-10-22 10:38  Express12\util\Tools.java
     目录           0  2020-10-22 13:07  Express12\view\
     文件        3289  2020-10-22 13:07  Express12\view\Views.java

评论

共有 条评论