Commit adb6105f authored by 季圣华's avatar 季圣华
Browse files

采购入库,增加单行的金额,合计金额,付款账户,付款金额等字段,改动较大,为临时版本

parent 77e30a07
...@@ -16,14 +16,11 @@ public class DepotHeadModel implements Serializable ...@@ -16,14 +16,11 @@ public class DepotHeadModel implements Serializable
private String OperTime; private String OperTime;
private Long OrganId; private Long OrganId;
private Long HandsPersonId; private Long HandsPersonId;
private Long WareHousePersonId; private Long AccountId;
private String SettlementWay = ""; private Double ChangeAmount;
private Long BuildingId;
private Long AllocationProjectId; private Long AllocationProjectId;
private Double TotalPrice;
private String Remark = ""; private String Remark = "";
private String State = "";
private String ReAuditPersonName = "";
private String Reason = "";
private String BeginTime; //查询开始时间 private String BeginTime; //查询开始时间
private String EndTime; //查询结束时间 private String EndTime; //查询结束时间
...@@ -117,28 +114,20 @@ public class DepotHeadModel implements Serializable ...@@ -117,28 +114,20 @@ public class DepotHeadModel implements Serializable
HandsPersonId = handsPersonId; HandsPersonId = handsPersonId;
} }
public Long getWareHousePersonId() { public Long getAccountId() {
return WareHousePersonId; return AccountId;
} }
public void setWareHousePersonId(Long wareHousePersonId) { public void setAccountId(Long accountId) {
WareHousePersonId = wareHousePersonId; AccountId = accountId;
} }
public String getSettlementWay() { public Double getChangeAmount() {
return SettlementWay; return ChangeAmount;
} }
public void setSettlementWay(String settlementWay) { public void setChangeAmount(Double changeAmount) {
SettlementWay = settlementWay; ChangeAmount = changeAmount;
}
public Long getBuildingId() {
return BuildingId;
}
public void setBuildingId(Long buildingId) {
BuildingId = buildingId;
} }
public Long getAllocationProjectId() { public Long getAllocationProjectId() {
...@@ -149,36 +138,20 @@ public class DepotHeadModel implements Serializable ...@@ -149,36 +138,20 @@ public class DepotHeadModel implements Serializable
AllocationProjectId = allocationProjectId; AllocationProjectId = allocationProjectId;
} }
public String getRemark() { public Double getTotalPrice() {
return Remark; return TotalPrice;
}
public void setRemark(String remark) {
Remark = remark;
}
public String getState() {
return State;
}
public void setState(String state) {
State = state;
}
public String getReAuditPersonName() {
return ReAuditPersonName;
} }
public void setReAuditPersonName(String reAuditPersonName) { public void setTotalPrice(Double totalPrice) {
ReAuditPersonName = reAuditPersonName; TotalPrice = totalPrice;
} }
public String getReason() { public String getRemark() {
return Reason; return Remark;
} }
public void setReason(String reason) { public void setRemark(String remark) {
Reason = reason; Remark = remark;
} }
public Long getDepotHeadID() { public Long getDepotHeadID() {
......
...@@ -13,7 +13,7 @@ public class DepotItemModel implements Serializable ...@@ -13,7 +13,7 @@ public class DepotItemModel implements Serializable
private Long MaterialId; private Long MaterialId;
private Double OperNumber; private Double OperNumber;
private Double UnitPrice; private Double UnitPrice;
private Double Incidentals; private Double AllPrice;
private String Remark = ""; private String Remark = "";
private String Img = ""; private String Img = "";
...@@ -100,12 +100,12 @@ public class DepotItemModel implements Serializable ...@@ -100,12 +100,12 @@ public class DepotItemModel implements Serializable
UnitPrice = unitPrice; UnitPrice = unitPrice;
} }
public Double getIncidentals() { public Double getAllPrice() {
return Incidentals; return AllPrice;
} }
public void setIncidentals(Double incidentals) { public void setAllPrice(Double allPrice) {
Incidentals = incidentals; AllPrice = allPrice;
} }
public String getRemark() { public String getRemark() {
......
...@@ -8,10 +8,6 @@ public class PersonModel implements Serializable ...@@ -8,10 +8,6 @@ public class PersonModel implements Serializable
private PersonShowModel showModel = new PersonShowModel(); private PersonShowModel showModel = new PersonShowModel();
/**======开始接受页面参数=================**/ /**======开始接受页面参数=================**/
/**
* ProjectId
*/
private Long ProjectId;
/** /**
* 类型 * 类型
*/ */
...@@ -54,14 +50,6 @@ public class PersonModel implements Serializable ...@@ -54,14 +50,6 @@ public class PersonModel implements Serializable
this.showModel = showModel; this.showModel = showModel;
} }
public Long getProjectId() {
return ProjectId;
}
public void setProjectId(Long projectId) {
ProjectId = projectId;
}
public String getType() { public String getType() {
return Type; return Type;
} }
......
package com.jsh.service.materials;
import com.jsh.base.BaseIService;
import com.jsh.model.po.Building;
public interface BuildingIService extends BaseIService<Building>
{
}
package com.jsh.service.materials;
import com.jsh.base.BaseService;
import com.jsh.dao.materials.BuildingIDAO;
import com.jsh.model.po.Building;
public class BuildingService extends BaseService<Building> implements BuildingIService
{
@SuppressWarnings("unused")
private BuildingIDAO buildingDao;
public void setBuildingDao(BuildingIDAO buildingDao) {
this.buildingDao = buildingDao;
}
@Override
protected Class<Building> getEntityClass()
{
return Building.class;
}
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment