5 changed files with 99 additions and 22 deletions
-
7src/main/java/com/letian/modules/base/dao/BoardDao.java
-
76src/main/java/com/letian/modules/base/entity/PieBoardData.java
-
24src/main/java/com/letian/modules/base/service/Impl/BoardServiceImpl.java
-
10src/main/resources/mapper/base/BoardDao.xml
-
4src/main/resources/mapper/production/DailyPlanMapper.xml
@ -0,0 +1,76 @@ |
|||||
|
package com.letian.modules.base.entity; |
||||
|
|
||||
|
public class PieBoardData { |
||||
|
private float qty1; //总日计划数 |
||||
|
private float qty2; //已入库数 |
||||
|
private float qty3; //已完成但未入库数 |
||||
|
private float qty4; //未完成数 |
||||
|
private float per1; |
||||
|
private float per2; //已入库数百分比 |
||||
|
private float per3; //已完成但未入库数百分比 |
||||
|
private float per4; //未完成数百分比 |
||||
|
|
||||
|
public float getQty1() { |
||||
|
return qty1; |
||||
|
} |
||||
|
|
||||
|
public void setQty1(float qty1) { |
||||
|
this.qty1 = qty1; |
||||
|
} |
||||
|
|
||||
|
public float getQty2() { |
||||
|
return qty2; |
||||
|
} |
||||
|
|
||||
|
public void setQty2(float qty2) { |
||||
|
this.qty2 = qty2; |
||||
|
} |
||||
|
|
||||
|
public float getQty3() { |
||||
|
return qty3; |
||||
|
} |
||||
|
|
||||
|
public void setQty3(float qty3) { |
||||
|
this.qty3 = qty3; |
||||
|
} |
||||
|
|
||||
|
public float getQty4() { |
||||
|
return qty4; |
||||
|
} |
||||
|
|
||||
|
public void setQty4(float qty4) { |
||||
|
this.qty4 = qty4; |
||||
|
} |
||||
|
|
||||
|
public float getPer1() { |
||||
|
return per1; |
||||
|
} |
||||
|
|
||||
|
public void setPer1(float per1) { |
||||
|
this.per1 = per1; |
||||
|
} |
||||
|
|
||||
|
public float getPer2() { |
||||
|
return per2; |
||||
|
} |
||||
|
|
||||
|
public void setPer2(float per2) { |
||||
|
this.per2 = per2; |
||||
|
} |
||||
|
|
||||
|
public float getPer3() { |
||||
|
return per3; |
||||
|
} |
||||
|
|
||||
|
public void setPer3(float per3) { |
||||
|
this.per3 = per3; |
||||
|
} |
||||
|
|
||||
|
public float getPer4() { |
||||
|
return per4; |
||||
|
} |
||||
|
|
||||
|
public void setPer4(float per4) { |
||||
|
this.per4 = per4; |
||||
|
} |
||||
|
} |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue