📄 check.java
字号:
package com.university.goodsmanager.biz.entity;import java.io.Serializable;public class Check implements Serializable{ private Integer check_ID; /*核查单编号*/ private String card; /*商品条形码*/ private String product; /*商品名*/ private String type; /*商品类型*/ private int quantity; /*数量*/ private double price; /*单价*/ private String ok; /*是否合格*/ private String reason; /*原因*/ private String supplier; /*提供厂商*/ private Employee emp; /*核查员*/ public Check(){} public Check(String card, String product, String type, int quantity, double price, String ok, String reason, String supplier) { super(); this.card = card; this.product = product; this.type = type; this.quantity = quantity; this.price = price; this.ok = ok; this.reason = reason; this.supplier = supplier; } public String getCard() { return card; } public void setCard(String card) { this.card = card; } public Integer getCheck_ID() { return check_ID; } public void setCheck_ID(Integer check_ID) { this.check_ID = check_ID; } public Employee getEmp() { return emp; } public void setEmp(Employee emp) { this.emp = emp; } public String getOk() { return ok; } public void setOk(String ok) { this.ok = ok; } public double getPrice() { return price; } public void setPrice(double price) { this.price = price; } public String getProduct() { return product; } public void setProduct(String product) { this.product = product; } public int getQuantity() { return quantity; } public void setQuantity(int quantity) { this.quantity = quantity; } public String getReason() { return reason; } public void setReason(String reason) { this.reason = reason; } public String getSupplier() { return supplier; } public void setSupplier(String supplier) { this.supplier = supplier; } public String getType() { return type; } public void setType(String type) { this.type = type; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -