4

来源:互联网 发布:kruskal算法并查集 编辑:程序博客网 时间:2024/05/17 05:19
 

package com.xingzhong.ore;

public class Lot {
 private String lotId;
 private Batch batchId;
 public Lot() {
  super();
  // TODO Auto-generated constructor stub
 }
 
 
 public Lot(String lotId, Batch batchId) {
  super();
  this.lotId = lotId;
  this.batchId = batchId;
 }


 public String getLotId() {
  return lotId;
 }
 public void setLotId(String lotId) {
  this.lotId = lotId;
 }
 public Batch getBatchId() {
  return batchId;
 }
 public void setBatchId(Batch batchId) {
  this.batchId = batchId;
 }
 
}

原创粉丝点击