cut-to-pack-service/src/main/java/com/utopiaindustries/model/ctp/InventoryAccount.java

176 lines
4.0 KiB
Java

package com.utopiaindustries.model.ctp;
import java.math.BigDecimal;
import java.time.LocalDateTime;
public class InventoryAccount {
private long id;
private String title;
private String parentEntityType;
private long parentEntityId;
private Boolean active;
private String createdBy;
private LocalDateTime createdAt;
private Integer locationSiteId;
private String notes;
private Boolean isPackaging;
private String articleName;
private long shiftMinutes;
private long totalMachines;
private BigDecimal efficiency;
private BigDecimal sam;
//wrapper
private String locationTitle;
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getParentEntityType() {
return parentEntityType;
}
public void setParentEntityType(String parentEntityType) {
this.parentEntityType = parentEntityType;
}
public long getParentEntityId() {
return parentEntityId;
}
public void setParentEntityId(long parentEntityId) {
this.parentEntityId = parentEntityId;
}
public Boolean getActive() {
return active;
}
public void setActive(Boolean active) {
this.active = active;
}
public String getCreatedBy() {
return createdBy;
}
public void setCreatedBy(String createdBy) {
this.createdBy = createdBy;
}
public LocalDateTime getCreatedAt() {
return createdAt;
}
public void setCreatedAt(LocalDateTime createdAt) {
this.createdAt = createdAt;
}
public Integer getLocationSiteId() {
return locationSiteId;
}
public void setLocationSiteId(Integer locationSiteId) {
this.locationSiteId = locationSiteId;
}
public String getNotes() {
return notes;
}
public void setNotes(String notes) {
this.notes = notes;
}
public Boolean getIsPackaging() {
return isPackaging;
}
public void setIsPackaging(Boolean isPackaging) {
this.isPackaging = isPackaging;
}
public String getLocationTitle() {
return locationTitle;
}
public void setLocationTitle(String locationTitle) {
this.locationTitle = locationTitle;
}
public String getArticleName() {
return articleName;
}
public void setArticleName(String articleName) {
this.articleName = articleName;
}
public long getShiftMinutes() {
return shiftMinutes;
}
public void setShiftMinutes(long shiftMinutes) {
this.shiftMinutes = shiftMinutes;
}
public long getTotalMachines() {
return totalMachines;
}
public void setTotalMachines(long totalMachines) {
this.totalMachines = totalMachines;
}
public BigDecimal getEfficiency() {
return efficiency;
}
public void setEfficiency(BigDecimal efficiency) {
this.efficiency = efficiency;
}
public BigDecimal getSam() {
return sam;
}
public void setSam(BigDecimal sam) {
this.sam = sam;
}
@Override
public String toString() {
return "InventoryAccount{" +
"id=" + id +
", title='" + title + '\'' +
", parentEntityType='" + parentEntityType + '\'' +
", parentEntityId=" + parentEntityId +
", active=" + active +
", createdBy='" + createdBy + '\'' +
", createdAt=" + createdAt +
", locationSiteId=" + locationSiteId +
", notes='" + notes + '\'' +
", isPackaging=" + isPackaging +
", articleName='" + articleName + '\'' +
", shiftMinutes=" + shiftMinutes +
", totalMachines=" + totalMachines +
", efficiency=" + efficiency +
", locationTitle='" + locationTitle + '\'' +
'}';
}
}