|
|
@@ -1,18 +1,18 @@
|
|
|
package com.goafanti.common.model;
|
|
|
|
|
|
-import java.io.Serializable;
|
|
|
import java.math.BigDecimal;
|
|
|
import java.util.Date;
|
|
|
+import java.io.Serializable;
|
|
|
|
|
|
|
|
|
/**
|
|
|
* 订单表(TOrderNew)实体类
|
|
|
*
|
|
|
* @author makejava
|
|
|
- * @since 2025-07-21 10:45:15
|
|
|
+ * @since 2025-12-11 10:46:08
|
|
|
*/
|
|
|
public class TOrderNew implements Serializable {
|
|
|
- private static final long serialVersionUID = -96001184610112478L;
|
|
|
+ private static final long serialVersionUID = -83400857385657708L;
|
|
|
/**
|
|
|
* 订单编号
|
|
|
*/
|
|
|
@@ -218,6 +218,22 @@ public class TOrderNew implements Serializable {
|
|
|
* 新购客户 0=是,1=否(未签单或者三年内未签单为新)
|
|
|
*/
|
|
|
private Integer newSignUser;
|
|
|
+ /**
|
|
|
+ * 是否签订保密协议:0=无,1=有
|
|
|
+ */
|
|
|
+ private Integer nda;
|
|
|
+ /**
|
|
|
+ * 保密协议地址
|
|
|
+ */
|
|
|
+ private String ndaUrl;
|
|
|
+ /**
|
|
|
+ * 是否有违约条件:0=无,1=有,有限责任违约条款、与技术服务有关,2=有,有限责任违约条款、与技术服务无有关,3=有,无限责任违约条款、与技术服务无有关,4=有,无限责任违约条款、与技术服务有关
|
|
|
+ */
|
|
|
+ private Integer breachClause;
|
|
|
+ /**
|
|
|
+ * 违约条款地址
|
|
|
+ */
|
|
|
+ private String breachClauseUrl;
|
|
|
|
|
|
|
|
|
public String getOrderNo() {
|
|
|
@@ -628,5 +644,37 @@ public class TOrderNew implements Serializable {
|
|
|
this.newSignUser = newSignUser;
|
|
|
}
|
|
|
|
|
|
+ public Integer getNda() {
|
|
|
+ return nda;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNda(Integer nda) {
|
|
|
+ this.nda = nda;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getNdaUrl() {
|
|
|
+ return ndaUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setNdaUrl(String ndaUrl) {
|
|
|
+ this.ndaUrl = ndaUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getBreachClause() {
|
|
|
+ return breachClause;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBreachClause(Integer breachClause) {
|
|
|
+ this.breachClause = breachClause;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getBreachClauseUrl() {
|
|
|
+ return breachClauseUrl;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setBreachClauseUrl(String breachClauseUrl) {
|
|
|
+ this.breachClauseUrl = breachClauseUrl;
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
|