parent
c15d8a9833
commit
9f6038cca3
File diff suppressed because it is too large
Load Diff
@ -1,18 +1,18 @@
|
||||
package com.connor.plm.CostListManagement;
|
||||
|
||||
public class QuotationUtil {
|
||||
|
||||
public static String formatString(String input) {
|
||||
|
||||
public static String formatString(String input) {
|
||||
if (input == null || input.length() == 0) {
|
||||
return input;
|
||||
}
|
||||
|
||||
|
||||
double number = Double.parseDouble(input);
|
||||
if (number == (int) number) {
|
||||
return String.valueOf((int) number);
|
||||
} else {
|
||||
return String.format("%.3f", number).replaceAll("0*$", "").replaceAll("\\.$", "");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1,176 +1,212 @@
|
||||
package com.connor.plm.CostListManagement.pojo;
|
||||
|
||||
public class Cusquotation {
|
||||
private String cbdlx;
|
||||
private String projectid;
|
||||
private String revision;
|
||||
private String proname;
|
||||
private String tennumber;
|
||||
private String promanager;
|
||||
private String quantity;
|
||||
private String tramodel;
|
||||
private String capfactor;
|
||||
private String volratio;
|
||||
private String noloadloss;
|
||||
private String loadloss;
|
||||
private String impvoltage;
|
||||
private String traweight;
|
||||
private String totweight;
|
||||
private String copconsumption;
|
||||
private String cmarketprice;
|
||||
private String vollevel;
|
||||
private String factory;
|
||||
public Cusquotation(String cbdlx, String projectid, String revision, String proname, String tennumber,
|
||||
String promanager, String quantity, String tramodel, String capfactor, String volratio, String noloadloss,
|
||||
String loadloss, String impvoltage, String traweight, String totweight, String copconsumption,
|
||||
String cmarketprice, String vollevel,String factory) {
|
||||
super();
|
||||
this.cbdlx = cbdlx;
|
||||
this.projectid = projectid;
|
||||
this.revision = revision;
|
||||
this.proname = proname;
|
||||
this.tennumber = tennumber;
|
||||
this.promanager = promanager;
|
||||
this.quantity = quantity;
|
||||
this.tramodel = tramodel;
|
||||
this.capfactor = capfactor;
|
||||
this.volratio = volratio;
|
||||
this.noloadloss = noloadloss;
|
||||
this.loadloss = loadloss;
|
||||
this.impvoltage = impvoltage;
|
||||
this.traweight = traweight;
|
||||
this.totweight = totweight;
|
||||
this.copconsumption = copconsumption;
|
||||
this.cmarketprice = cmarketprice;
|
||||
this.vollevel = vollevel;
|
||||
this.factory = factory;
|
||||
}
|
||||
public String getCbdlx() {
|
||||
return cbdlx;
|
||||
}
|
||||
public void setCbdlx(String cbdlx) {
|
||||
this.cbdlx = cbdlx;
|
||||
}
|
||||
public String getProjectid() {
|
||||
return projectid;
|
||||
}
|
||||
public void setProjectid(String projectid) {
|
||||
this.projectid = projectid;
|
||||
}
|
||||
public String getRevision() {
|
||||
return revision;
|
||||
}
|
||||
public void setRevision(String revision) {
|
||||
this.revision = revision;
|
||||
}
|
||||
public String getProname() {
|
||||
return proname;
|
||||
}
|
||||
public void setProname(String proname) {
|
||||
this.proname = proname;
|
||||
}
|
||||
public String getTennumber() {
|
||||
return tennumber;
|
||||
}
|
||||
public void setTennumber(String tennumber) {
|
||||
this.tennumber = tennumber;
|
||||
}
|
||||
public String getPromanager() {
|
||||
return promanager;
|
||||
}
|
||||
public void setPromanager(String promanager) {
|
||||
this.promanager = promanager;
|
||||
}
|
||||
public String getQuantity() {
|
||||
return quantity;
|
||||
}
|
||||
public void setQuantity(String quantity) {
|
||||
this.quantity = quantity;
|
||||
}
|
||||
public String getTramodel() {
|
||||
return tramodel;
|
||||
}
|
||||
public void setTramodel(String tramodel) {
|
||||
this.tramodel = tramodel;
|
||||
}
|
||||
public String getCapfactor() {
|
||||
return capfactor;
|
||||
}
|
||||
public void setCapfactor(String capfactor) {
|
||||
this.capfactor = capfactor;
|
||||
}
|
||||
public String getVolratio() {
|
||||
return volratio;
|
||||
}
|
||||
public void setVolratio(String volratio) {
|
||||
this.volratio = volratio;
|
||||
}
|
||||
public String getNoloadloss() {
|
||||
return noloadloss;
|
||||
}
|
||||
public void setNoloadloss(String noloadloss) {
|
||||
this.noloadloss = noloadloss;
|
||||
}
|
||||
public String getLoadloss() {
|
||||
return loadloss;
|
||||
}
|
||||
public void setLoadloss(String loadloss) {
|
||||
this.loadloss = loadloss;
|
||||
}
|
||||
public String getImpvoltage() {
|
||||
return impvoltage;
|
||||
}
|
||||
public void setImpvoltage(String impvoltage) {
|
||||
this.impvoltage = impvoltage;
|
||||
}
|
||||
public String getTraweight() {
|
||||
return traweight;
|
||||
}
|
||||
public void setTraweight(String traweight) {
|
||||
this.traweight = traweight;
|
||||
}
|
||||
public String getTotweight() {
|
||||
return totweight;
|
||||
}
|
||||
public void setTotweight(String totweight) {
|
||||
this.totweight = totweight;
|
||||
}
|
||||
public String getCopconsumption() {
|
||||
return copconsumption;
|
||||
}
|
||||
public void setCopconsumption(String copconsumption) {
|
||||
this.copconsumption = copconsumption;
|
||||
}
|
||||
public String getCmarketprice() {
|
||||
return cmarketprice;
|
||||
}
|
||||
public void setCmarketprice(String cmarketprice) {
|
||||
this.cmarketprice = cmarketprice;
|
||||
}
|
||||
public String getVollevel() {
|
||||
return vollevel;
|
||||
}
|
||||
public void setVollevel(String vollevel) {
|
||||
this.vollevel = vollevel;
|
||||
}
|
||||
|
||||
public String getFactory() {
|
||||
return factory;
|
||||
}
|
||||
public void setFactory(String factory) {
|
||||
this.factory = factory;
|
||||
}
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Cusquotation [cbdlx=" + cbdlx + ", projectid=" + projectid + ", revision=" + revision + ", proname="
|
||||
+ proname + ", tennumber=" + tennumber + ", promanager=" + promanager + ", quantity=" + quantity
|
||||
+ ", tramodel=" + tramodel + ", capfactor=" + capfactor + ", volratio=" + volratio + ", noloadloss="
|
||||
+ noloadloss + ", loadloss=" + loadloss + ", impvoltage=" + impvoltage + ", traweight=" + traweight
|
||||
+ ", totweight=" + totweight + ", copconsumption=" + copconsumption + ", cmarketprice=" + cmarketprice
|
||||
+ ", vollevel=" + vollevel + ", factory=" + factory + "]";
|
||||
}
|
||||
|
||||
|
||||
|
||||
private String cbdlx;
|
||||
private String projectid;
|
||||
private String revision;
|
||||
private String proname;
|
||||
private String tennumber;
|
||||
private String promanager;
|
||||
private String quantity;
|
||||
private String tramodel;
|
||||
private String capfactor;
|
||||
private String volratio;
|
||||
private String noloadloss;
|
||||
private String loadloss;
|
||||
private String impvoltage;
|
||||
private String traweight;
|
||||
private String totweight;
|
||||
private String copconsumption;
|
||||
private String cmarketprice;
|
||||
private String vollevel;
|
||||
private String factory;
|
||||
|
||||
public Cusquotation(String cbdlx, String projectid, String revision, String proname, String tennumber,
|
||||
String promanager, String quantity, String tramodel, String capfactor, String volratio, String noloadloss,
|
||||
String loadloss, String impvoltage, String traweight, String totweight, String copconsumption,
|
||||
String cmarketprice, String vollevel, String factory) {
|
||||
super();
|
||||
this.cbdlx = cbdlx;
|
||||
this.projectid = projectid;
|
||||
this.revision = revision;
|
||||
this.proname = proname;
|
||||
this.tennumber = tennumber;
|
||||
this.promanager = promanager;
|
||||
this.quantity = quantity;
|
||||
this.tramodel = tramodel;
|
||||
this.capfactor = capfactor;
|
||||
this.volratio = volratio;
|
||||
this.noloadloss = noloadloss;
|
||||
this.loadloss = loadloss;
|
||||
this.impvoltage = impvoltage;
|
||||
this.traweight = traweight;
|
||||
this.totweight = totweight;
|
||||
this.copconsumption = copconsumption;
|
||||
this.cmarketprice = cmarketprice;
|
||||
this.vollevel = vollevel;
|
||||
this.factory = factory;
|
||||
}
|
||||
|
||||
public String getCbdlx() {
|
||||
return cbdlx;
|
||||
}
|
||||
|
||||
public void setCbdlx(String cbdlx) {
|
||||
this.cbdlx = cbdlx;
|
||||
}
|
||||
|
||||
public String getProjectid() {
|
||||
return projectid;
|
||||
}
|
||||
|
||||
public void setProjectid(String projectid) {
|
||||
this.projectid = projectid;
|
||||
}
|
||||
|
||||
public String getRevision() {
|
||||
return revision;
|
||||
}
|
||||
|
||||
public void setRevision(String revision) {
|
||||
this.revision = revision;
|
||||
}
|
||||
|
||||
public String getProname() {
|
||||
return proname;
|
||||
}
|
||||
|
||||
public void setProname(String proname) {
|
||||
this.proname = proname;
|
||||
}
|
||||
|
||||
public String getTennumber() {
|
||||
return tennumber;
|
||||
}
|
||||
|
||||
public void setTennumber(String tennumber) {
|
||||
this.tennumber = tennumber;
|
||||
}
|
||||
|
||||
public String getPromanager() {
|
||||
return promanager;
|
||||
}
|
||||
|
||||
public void setPromanager(String promanager) {
|
||||
this.promanager = promanager;
|
||||
}
|
||||
|
||||
public String getQuantity() {
|
||||
return quantity;
|
||||
}
|
||||
|
||||
public void setQuantity(String quantity) {
|
||||
this.quantity = quantity;
|
||||
}
|
||||
|
||||
public String getTramodel() {
|
||||
return tramodel;
|
||||
}
|
||||
|
||||
public void setTramodel(String tramodel) {
|
||||
this.tramodel = tramodel;
|
||||
}
|
||||
|
||||
public String getCapfactor() {
|
||||
return capfactor;
|
||||
}
|
||||
|
||||
public void setCapfactor(String capfactor) {
|
||||
this.capfactor = capfactor;
|
||||
}
|
||||
|
||||
public String getVolratio() {
|
||||
return volratio;
|
||||
}
|
||||
|
||||
public void setVolratio(String volratio) {
|
||||
this.volratio = volratio;
|
||||
}
|
||||
|
||||
public String getNoloadloss() {
|
||||
return noloadloss;
|
||||
}
|
||||
|
||||
public void setNoloadloss(String noloadloss) {
|
||||
this.noloadloss = noloadloss;
|
||||
}
|
||||
|
||||
public String getLoadloss() {
|
||||
return loadloss;
|
||||
}
|
||||
|
||||
public void setLoadloss(String loadloss) {
|
||||
this.loadloss = loadloss;
|
||||
}
|
||||
|
||||
public String getImpvoltage() {
|
||||
return impvoltage;
|
||||
}
|
||||
|
||||
public void setImpvoltage(String impvoltage) {
|
||||
this.impvoltage = impvoltage;
|
||||
}
|
||||
|
||||
public String getTraweight() {
|
||||
return traweight;
|
||||
}
|
||||
|
||||
public void setTraweight(String traweight) {
|
||||
this.traweight = traweight;
|
||||
}
|
||||
|
||||
public String getTotweight() {
|
||||
return totweight;
|
||||
}
|
||||
|
||||
public void setTotweight(String totweight) {
|
||||
this.totweight = totweight;
|
||||
}
|
||||
|
||||
public String getCopconsumption() {
|
||||
return copconsumption;
|
||||
}
|
||||
|
||||
public void setCopconsumption(String copconsumption) {
|
||||
this.copconsumption = copconsumption;
|
||||
}
|
||||
|
||||
public String getCmarketprice() {
|
||||
return cmarketprice;
|
||||
}
|
||||
|
||||
public void setCmarketprice(String cmarketprice) {
|
||||
this.cmarketprice = cmarketprice;
|
||||
}
|
||||
|
||||
public String getVollevel() {
|
||||
return vollevel;
|
||||
}
|
||||
|
||||
public void setVollevel(String vollevel) {
|
||||
this.vollevel = vollevel;
|
||||
}
|
||||
|
||||
public String getFactory() {
|
||||
return factory;
|
||||
}
|
||||
|
||||
public void setFactory(String factory) {
|
||||
this.factory = factory;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Cusquotation [cbdlx=" + cbdlx + ", projectid=" + projectid + ", revision=" + revision + ", proname="
|
||||
+ proname + ", tennumber=" + tennumber + ", promanager=" + promanager + ", quantity=" + quantity
|
||||
+ ", tramodel=" + tramodel + ", capfactor=" + capfactor + ", volratio=" + volratio + ", noloadloss="
|
||||
+ noloadloss + ", loadloss=" + loadloss + ", impvoltage=" + impvoltage + ", traweight=" + traweight
|
||||
+ ", totweight=" + totweight + ", copconsumption=" + copconsumption + ", cmarketprice=" + cmarketprice
|
||||
+ ", vollevel=" + vollevel + ", factory=" + factory + "]";
|
||||
}
|
||||
|
||||
}
|
||||
|
@ -1,232 +1,164 @@
|
||||
package com.connor.plm.CostListManagement.pojo;
|
||||
|
||||
public class GzxqBean {
|
||||
private String instanceId;
|
||||
private String factory;
|
||||
private String sfId;
|
||||
private String head;
|
||||
private String scheduledtime;
|
||||
private String model;
|
||||
private String productname;
|
||||
private String toolnumber;
|
||||
private String toolname;
|
||||
private String toolinglevel;
|
||||
private String reason;
|
||||
private String jsgyrequirements;
|
||||
private String link;
|
||||
private String state;
|
||||
private String instanceId;
|
||||
private String factory;
|
||||
private String sfId;
|
||||
private String head;
|
||||
private String scheduledtime;
|
||||
private String model;
|
||||
private String productname;
|
||||
private String toolnumber;
|
||||
private String toolname;
|
||||
private String toolinglevel;
|
||||
private String reason;
|
||||
private String jsgyrequirements;
|
||||
private String link;
|
||||
private String state;
|
||||
|
||||
public GzxqBean() {
|
||||
super();
|
||||
}
|
||||
|
||||
public String getInstanceId() {
|
||||
return instanceId;
|
||||
}
|
||||
|
||||
public void setInstanceId(String instanceId) {
|
||||
this.instanceId = instanceId;
|
||||
}
|
||||
|
||||
public String getFactory() {
|
||||
return factory;
|
||||
}
|
||||
|
||||
public void setFactory(String factory) {
|
||||
this.factory = factory;
|
||||
}
|
||||
|
||||
public String getSfId() {
|
||||
return sfId;
|
||||
}
|
||||
|
||||
public void setSfId(String sfId) {
|
||||
this.sfId = sfId;
|
||||
}
|
||||
|
||||
public String getHead() {
|
||||
return head;
|
||||
}
|
||||
|
||||
public void setHead(String head) {
|
||||
this.head = head;
|
||||
}
|
||||
|
||||
public String getScheduledtime() {
|
||||
return scheduledtime;
|
||||
}
|
||||
|
||||
public void setScheduledtime(String scheduledtime) {
|
||||
this.scheduledtime = scheduledtime;
|
||||
}
|
||||
|
||||
public String getModel() {
|
||||
return model;
|
||||
}
|
||||
|
||||
public void setModel(String model) {
|
||||
this.model = model;
|
||||
}
|
||||
|
||||
public String getProductname() {
|
||||
return productname;
|
||||
}
|
||||
|
||||
public void setProductname(String productname) {
|
||||
this.productname = productname;
|
||||
}
|
||||
|
||||
public String getToolnumber() {
|
||||
return toolnumber;
|
||||
}
|
||||
|
||||
public void setToolnumber(String toolnumber) {
|
||||
this.toolnumber = toolnumber;
|
||||
}
|
||||
|
||||
public String getToolname() {
|
||||
return toolname;
|
||||
}
|
||||
|
||||
public void setToolname(String toolname) {
|
||||
this.toolname = toolname;
|
||||
}
|
||||
|
||||
public String getToolinglevel() {
|
||||
return toolinglevel;
|
||||
}
|
||||
|
||||
public void setToolinglevel(String toolinglevel) {
|
||||
this.toolinglevel = toolinglevel;
|
||||
}
|
||||
|
||||
public String getReason() {
|
||||
return reason;
|
||||
}
|
||||
|
||||
public void setReason(String reason) {
|
||||
this.reason = reason;
|
||||
}
|
||||
|
||||
public String getJsgyrequirements() {
|
||||
return jsgyrequirements;
|
||||
}
|
||||
|
||||
public void setJsgyrequirements(String jsgyrequirements) {
|
||||
this.jsgyrequirements = jsgyrequirements;
|
||||
}
|
||||
|
||||
public String getLink() {
|
||||
return link;
|
||||
}
|
||||
|
||||
public void setLink(String link) {
|
||||
this.link = link;
|
||||
}
|
||||
|
||||
public String getState() {
|
||||
return state;
|
||||
}
|
||||
|
||||
public void setState(String state) {
|
||||
this.state = state;
|
||||
}
|
||||
|
||||
public GzxqBean(String instanceId, String factory, String sfId, String head, String scheduledtime, String model,
|
||||
String productname, String toolnumber, String toolname, String toolinglevel, String reason,
|
||||
String jsgyrequirements, String link, String state) {
|
||||
super();
|
||||
this.instanceId = instanceId;
|
||||
this.factory = factory;
|
||||
this.sfId = sfId;
|
||||
this.head = head;
|
||||
this.scheduledtime = scheduledtime;
|
||||
this.model = model;
|
||||
this.productname = productname;
|
||||
this.toolnumber = toolnumber;
|
||||
this.toolname = toolname;
|
||||
this.toolinglevel = toolinglevel;
|
||||
this.reason = reason;
|
||||
this.jsgyrequirements = jsgyrequirements;
|
||||
this.link = link;
|
||||
this.state = state;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "GzxqBean [instanceId=" + instanceId + ", factory=" + factory + ", sfId=" + sfId + ", head=" + head
|
||||
+ ", scheduledtime=" + scheduledtime + ", model=" + model + ", productname=" + productname
|
||||
+ ", toolnumber=" + toolnumber + ", toolname=" + toolname + ", toolinglevel=" + toolinglevel
|
||||
+ ", reason=" + reason + ", jsgyrequirements=" + jsgyrequirements + ", link=" + link + ", state="
|
||||
+ state + "]";
|
||||
}
|
||||
|
||||
|
||||
|
||||
public GzxqBean() {
|
||||
super();
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getInstanceId() {
|
||||
return instanceId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void setInstanceId(String instanceId) {
|
||||
this.instanceId = instanceId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getFactory() {
|
||||
return factory;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void setFactory(String factory) {
|
||||
this.factory = factory;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getSfId() {
|
||||
return sfId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void setSfId(String sfId) {
|
||||
this.sfId = sfId;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getHead() {
|
||||
return head;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void setHead(String head) {
|
||||
this.head = head;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getScheduledtime() {
|
||||
return scheduledtime;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void setScheduledtime(String scheduledtime) {
|
||||
this.scheduledtime = scheduledtime;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getModel() {
|
||||
return model;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void setModel(String model) {
|
||||
this.model = model;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getProductname() {
|
||||
return productname;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void setProductname(String productname) {
|
||||
this.productname = productname;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getToolnumber() {
|
||||
return toolnumber;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void setToolnumber(String toolnumber) {
|
||||
this.toolnumber = toolnumber;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getToolname() {
|
||||
return toolname;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void setToolname(String toolname) {
|
||||
this.toolname = toolname;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getToolinglevel() {
|
||||
return toolinglevel;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void setToolinglevel(String toolinglevel) {
|
||||
this.toolinglevel = toolinglevel;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getReason() {
|
||||
return reason;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void setReason(String reason) {
|
||||
this.reason = reason;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getJsgyrequirements() {
|
||||
return jsgyrequirements;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void setJsgyrequirements(String jsgyrequirements) {
|
||||
this.jsgyrequirements = jsgyrequirements;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getLink() {
|
||||
return link;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void setLink(String link) {
|
||||
this.link = link;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String getState() {
|
||||
return state;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void setState(String state) {
|
||||
this.state = state;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public GzxqBean(String instanceId, String factory, String sfId, String head, String scheduledtime, String model,
|
||||
String productname, String toolnumber, String toolname, String toolinglevel, String reason,
|
||||
String jsgyrequirements, String link, String state) {
|
||||
super();
|
||||
this.instanceId = instanceId;
|
||||
this.factory = factory;
|
||||
this.sfId = sfId;
|
||||
this.head = head;
|
||||
this.scheduledtime = scheduledtime;
|
||||
this.model = model;
|
||||
this.productname = productname;
|
||||
this.toolnumber = toolnumber;
|
||||
this.toolname = toolname;
|
||||
this.toolinglevel = toolinglevel;
|
||||
this.reason = reason;
|
||||
this.jsgyrequirements = jsgyrequirements;
|
||||
this.link = link;
|
||||
this.state = state;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "GzxqBean [instanceId=" + instanceId + ", factory=" + factory + ", sfId=" + sfId + ", head=" + head
|
||||
+ ", scheduledtime=" + scheduledtime + ", model=" + model + ", productname=" + productname
|
||||
+ ", toolnumber=" + toolnumber + ", toolname=" + toolname + ", toolinglevel=" + toolinglevel
|
||||
+ ", reason=" + reason + ", jsgyrequirements=" + jsgyrequirements + ", link=" + link + ", state="
|
||||
+ state + "]";
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
@ -1,13 +1,15 @@
|
||||
package com.connor.plm.CreateOuotation;
|
||||
|
||||
import java.awt.Window;
|
||||
|
||||
import com.connor.plm.CostListManagement.pojo.Quotation;
|
||||
public class JDBfxPanel extends KFXPanel{
|
||||
private Quotation quotation;
|
||||
public JDBfxPanel(Window dialog) {
|
||||
super(dialog);
|
||||
// TODO Auto-generated constructor stub
|
||||
}
|
||||
|
||||
public class JDBfxPanel extends KFXPanel {
|
||||
private Quotation quotation;
|
||||
|
||||
public JDBfxPanel(Window dialog) {
|
||||
super(dialog);
|
||||
// TODO Auto-generated constructor stub
|
||||
}
|
||||
|
||||
}
|
File diff suppressed because it is too large
Load Diff
@ -1,9 +1,9 @@
|
||||
package com.connor.plm.CreateOuotation;
|
||||
|
||||
public class test {
|
||||
public static void main(String[] args) {
|
||||
double contrastPrice = Double.parseDouble("0");
|
||||
System.out.println(contrastPrice==0);
|
||||
}
|
||||
public static void main(String[] args) {
|
||||
double contrastPrice = Double.parseDouble("0");
|
||||
System.out.println(contrastPrice == 0);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in new issue