|
|
@@ -4,14 +4,15 @@ import java.io.Serializable;
|
|
|
import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
|
|
|
+
|
|
|
/**
|
|
|
* 订单任务表(TOrderTask)实体类
|
|
|
*
|
|
|
* @author makejava
|
|
|
- * @since 2024-09-11 16:02:22
|
|
|
+ * @since 2024-09-27 15:05:35
|
|
|
*/
|
|
|
public class TOrderTask implements Serializable {
|
|
|
- private static final long serialVersionUID = -19599508669162603L;
|
|
|
+ private static final long serialVersionUID = -73520121653483895L;
|
|
|
/**
|
|
|
* 任务编号
|
|
|
*/
|
|
|
@@ -48,7 +49,6 @@ public class TOrderTask implements Serializable {
|
|
|
* 合同商品价格
|
|
|
*/
|
|
|
private BigDecimal commodityPrice;
|
|
|
-
|
|
|
/**
|
|
|
* 任务状态 0-未分派 ,1-已分派,2-材料已启动,3-材料已完成
|
|
|
*/
|
|
|
@@ -137,7 +137,6 @@ public class TOrderTask implements Serializable {
|
|
|
* 立项金额
|
|
|
*/
|
|
|
private BigDecimal setUpAmount;
|
|
|
-
|
|
|
/**
|
|
|
* 状态 0未到款 1已到款
|
|
|
*/
|
|
|
@@ -150,7 +149,6 @@ public class TOrderTask implements Serializable {
|
|
|
* 单价
|
|
|
*/
|
|
|
private BigDecimal outsourcePrice;
|
|
|
-
|
|
|
/**
|
|
|
* 咨询师id
|
|
|
*/
|
|
|
@@ -231,7 +229,6 @@ public class TOrderTask implements Serializable {
|
|
|
* 认证费
|
|
|
*/
|
|
|
private BigDecimal certificationFee;
|
|
|
-
|
|
|
/**
|
|
|
* 认证公司
|
|
|
*/
|
|
|
@@ -292,6 +289,14 @@ public class TOrderTask implements Serializable {
|
|
|
* 完成状态 0待完成 1已完成
|
|
|
*/
|
|
|
private Integer completeStatus;
|
|
|
+ /**
|
|
|
+ * 0=无,1=待评分,2=已评分
|
|
|
+ */
|
|
|
+ private Integer scoreStatus;
|
|
|
+ /**
|
|
|
+ * 评分
|
|
|
+ */
|
|
|
+ private Integer scoreNumber;
|
|
|
|
|
|
|
|
|
public Integer getId() {
|
|
|
@@ -846,5 +851,21 @@ public class TOrderTask implements Serializable {
|
|
|
this.completeStatus = completeStatus;
|
|
|
}
|
|
|
|
|
|
+ public Integer getScoreStatus() {
|
|
|
+ return scoreStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setScoreStatus(Integer scoreStatus) {
|
|
|
+ this.scoreStatus = scoreStatus;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getScoreNumber() {
|
|
|
+ return scoreNumber;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setScoreNumber(Integer scoreNumber) {
|
|
|
+ this.scoreNumber = scoreNumber;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|