package com.ruoyi.buss.domain; import java.util.Date; import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonIgnore; import org.apache.commons.lang3.builder.ToStringBuilder; import org.apache.commons.lang3.builder.ToStringStyle; import com.ruoyi.common.annotation.Excel; import com.ruoyi.common.core.domain.BaseEntity; /** * 任务调配详情信息对象 ds_task_detail * * @author lx * @date 2025-03-14 */ public class DsTaskDetail extends BaseEntity { private static final long serialVersionUID = 1L; /** */ @Excel(name = "") private Long PKID; /** */ @Excel(name = "") private Long taskId; /** */ @Excel(name = "") private Long harborId; /** */ @Excel(name = "") private String harborName; /** */ @Excel(name = "") private Long berthId; /** */ @Excel(name = "") private String berthName; /** */ @Excel(name = "") private String parkingType; /** */ @Excel(name = "") private String shipNo; /** */ @Excel(name = "") private String shipType; /** */ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") @Excel(name = "", width = 30, dateFormat = "yyyy-MM-dd") private Date STIME; /** */ private Integer elecStime; /** */ private Integer elecEtime; /** */ private Integer waterStime; /** */ private Integer waterEtime; /** */ private Integer oilStime; /** */ private Integer oilEtime; /** */ private Integer ammoStime; /** */ private Integer ammoEtime; /** */ private Integer matStime; /** */ private Integer matEtime; /** */ @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") @Excel(name = "", width = 30, dateFormat = "yyyy-MM-dd") private Date ETIME; /** */ @Excel(name = "") private Integer oilTime; /** */ @Excel(name = "") private Integer ammoTime; /** */ @Excel(name = "") private Integer matTime; /** */ @Excel(name = "") private Integer waterTime; private Integer totalTime; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @Excel(name = "", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") private Date t1; /** */ @Excel(name = "") private String delFlag; private String supplySeq; private Integer carCount; private Integer oilApply; private Integer oilReady; private Integer ammoTest; private Integer ammoStart; private Double food; private Double foodW; private Double foodO; private Long workGrpId; private String workGrpName; private Long deptId; private Long workMatGrpId; private String workMatGrpName; private String path; public void setPKID(Long PKID) { this.PKID = PKID; } public Long getPKID() { return PKID; } public void setTaskId(Long taskId) { this.taskId = taskId; } public Long getTaskId() { return taskId; } public void setHarborId(Long harborId) { this.harborId = harborId; } public Long getHarborId() { return harborId; } public void setHarborName(String harborName) { this.harborName = harborName; } public String getHarborName() { return harborName; } public void setBerthId(Long berthId) { this.berthId = berthId; } public Long getBerthId() { return berthId; } public void setBerthName(String berthName) { this.berthName = berthName; } public String getBerthName() { return berthName; } public void setParkingType(String parkingType) { this.parkingType = parkingType; } public String getParkingType() { return parkingType; } public void setShipNo(String shipNo) { this.shipNo = shipNo; } public String getShipNo() { return shipNo; } public void setShipType(String shipType) { this.shipType = shipType; } public String getShipType() { return shipType; } public void setSTIME(Date STIME) { this.STIME = STIME; } public Date getSTIME() { return STIME; } public Integer getElecStime() { return elecStime; } public void setElecStime(Integer elecStime) { this.elecStime = elecStime; } public Integer getElecEtime() { return elecEtime; } public void setElecEtime(Integer elecEtime) { this.elecEtime = elecEtime; } public Integer getWaterStime() { return waterStime; } public void setWaterStime(Integer waterStime) { this.waterStime = waterStime; } public Integer getWaterEtime() { return waterEtime; } public void setWaterEtime(Integer waterEtime) { this.waterEtime = waterEtime; } public Integer getOilStime() { return oilStime; } public void setOilStime(Integer oilStime) { this.oilStime = oilStime; } public Integer getOilEtime() { return oilEtime; } public void setOilEtime(Integer oilEtime) { this.oilEtime = oilEtime; } public Integer getAmmoStime() { return ammoStime; } public void setAmmoStime(Integer ammoStime) { this.ammoStime = ammoStime; } public Integer getAmmoEtime() { return ammoEtime; } public void setAmmoEtime(Integer ammoEtime) { this.ammoEtime = ammoEtime; } public Integer getMatStime() { return matStime; } public void setMatStime(Integer matStime) { this.matStime = matStime; } public Integer getMatEtime() { return matEtime; } public void setMatEtime(Integer matEtime) { this.matEtime = matEtime; } public void setETIME(Date ETIME) { this.ETIME = ETIME; } public Date getETIME() { return ETIME; } public void setDelFlag(String delFlag) { this.delFlag = delFlag; } public String getDelFlag() { return delFlag; } public Date getT1() { return t1; } public void setT1(Date t1) { this.t1 = t1; } public String getSupplySeq() { return supplySeq; } public void setSupplySeq(String supplySeq) { this.supplySeq = supplySeq; } public Integer getCarCount() { return carCount; } public void setCarCount(Integer carCount) { this.carCount = carCount; } public Double getFood() { return food; } public Integer getOilTime() { return oilTime; } public void setOilTime(Integer oilTime) { this.oilTime = oilTime; } public Integer getAmmoTime() { return ammoTime; } public void setAmmoTime(Integer ammoTime) { this.ammoTime = ammoTime; } public Integer getMatTime() { return matTime; } public void setMatTime(Integer matTime) { this.matTime = matTime; } public Integer getWaterTime() { return waterTime; } public void setWaterTime(Integer waterTime) { this.waterTime = waterTime; } public Integer getTotalTime() { return totalTime; } public void setTotalTime(Integer totalTime) { this.totalTime = totalTime; } public Integer getOilApply() { return oilApply; } public void setOilApply(Integer oilApply) { this.oilApply = oilApply; } public Integer getOilReady() { return oilReady; } public void setOilReady(Integer oilReady) { this.oilReady = oilReady; } public Integer getAmmoTest() { return ammoTest; } public void setAmmoTest(Integer ammoTest) { this.ammoTest = ammoTest; } public Integer getAmmoStart() { return ammoStart; } public void setAmmoStart(Integer ammoStart) { this.ammoStart = ammoStart; } public void setFood(Double food) { this.food = food; } public Double getFoodW() { return foodW; } public void setFoodW(Double foodW) { this.foodW = foodW; } public Double getFoodO() { return foodO; } public void setFoodO(Double foodO) { this.foodO = foodO; } public Long getWorkGrpId() { return workGrpId; } public void setWorkGrpId(Long workGrpId) { this.workGrpId = workGrpId; } public String getWorkGrpName() { return workGrpName; } public void setWorkGrpName(String workGrpName) { this.workGrpName = workGrpName; } public Long getDeptId() { return deptId; } public void setDeptId(Long deptId) { this.deptId = deptId; } public Long getWorkMatGrpId() { return workMatGrpId; } public void setWorkMatGrpId(Long workMatGrpId) { this.workMatGrpId = workMatGrpId; } public String getWorkMatGrpName() { return workMatGrpName; } public void setWorkMatGrpName(String workMatGrpName) { this.workMatGrpName = workMatGrpName; } public String getPath() { return path; } public void setPath(String path) { this.path = path; } @Override public String toString() { return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) .append("PKID", getPKID()) .append("taskId", getTaskId()) .append("harborId", getHarborId()) .append("harborName", getHarborName()) .append("berthId", getBerthId()) .append("berthName", getBerthName()) .append("parkingType", getParkingType()) .append("shipNo", getShipNo()) .append("shipType", getShipType()) .append("STIME", getSTIME()) .append("elecStime", getElecStime()) .append("elecEtime", getElecEtime()) .append("waterStime", getWaterStime()) .append("waterEtime", getWaterEtime()) .append("oilStime", getOilStime()) .append("oilEtime", getOilEtime()) .append("ammoStime", getAmmoStime()) .append("ammoEtime", getAmmoEtime()) .append("matStime", getMatStime()) .append("matEtime", getMatEtime()) .append("ETIME", getETIME()) .append("delFlag", getDelFlag()) .append("createBy", getCreateBy()) .append("createTime", getCreateTime()) .append("updateBy", getUpdateBy()) .append("updateTime", getUpdateTime()) .append("deptId", getDeptId()) .toString(); } }