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

📄 order.java

📁 一个小型的购物商店
💻 JAVA
字号:
/* * Order.java * * Created on 2006年9月14日, 下午1:14 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */package com.shopping.model;import java.util.*;/** * * @author 曹昊 */public class Order {    private int id;    private Set items;    private User user;    private int status;    private double cost;        public Order() {    }        public int getId() {        return this.id;    }    public void setId(int id) {        this.id = id;    }        public Set getItems() {        return items;    }    public void setItems(Set items) {        this.items = items;    }    public User getUser() {        return user;    }    public void setUser(User user) {        this.user = user;    }    public int getStatus() {        return status;    }    public void setStatus(int status) {        this.status = status;    }    public double getCost() {        return cost;    }    public void setCost(double cost) {        this.cost = cost;    }    }

⌨️ 快捷键说明

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