给单据增加订金字段和接口逻辑
This commit is contained in:
@@ -52,6 +52,8 @@ public class DepotHead {
|
||||
|
||||
private BigDecimal otherMoney;
|
||||
|
||||
private BigDecimal deposit;
|
||||
|
||||
private String status;
|
||||
|
||||
private String purchaseStatus;
|
||||
@@ -254,6 +256,14 @@ public class DepotHead {
|
||||
this.otherMoney = otherMoney;
|
||||
}
|
||||
|
||||
public BigDecimal getDeposit() {
|
||||
return deposit;
|
||||
}
|
||||
|
||||
public void setDeposit(BigDecimal deposit) {
|
||||
this.deposit = deposit;
|
||||
}
|
||||
|
||||
public String getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
@@ -1656,6 +1656,66 @@ public class DepotHeadExample {
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDepositIsNull() {
|
||||
addCriterion("deposit is null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDepositIsNotNull() {
|
||||
addCriterion("deposit is not null");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDepositEqualTo(BigDecimal value) {
|
||||
addCriterion("deposit =", value, "deposit");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDepositNotEqualTo(BigDecimal value) {
|
||||
addCriterion("deposit <>", value, "deposit");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDepositGreaterThan(BigDecimal value) {
|
||||
addCriterion("deposit >", value, "deposit");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDepositGreaterThanOrEqualTo(BigDecimal value) {
|
||||
addCriterion("deposit >=", value, "deposit");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDepositLessThan(BigDecimal value) {
|
||||
addCriterion("deposit <", value, "deposit");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDepositLessThanOrEqualTo(BigDecimal value) {
|
||||
addCriterion("deposit <=", value, "deposit");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDepositIn(List<BigDecimal> values) {
|
||||
addCriterion("deposit in", values, "deposit");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDepositNotIn(List<BigDecimal> values) {
|
||||
addCriterion("deposit not in", values, "deposit");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDepositBetween(BigDecimal value1, BigDecimal value2) {
|
||||
addCriterion("deposit between", value1, value2, "deposit");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andDepositNotBetween(BigDecimal value1, BigDecimal value2) {
|
||||
addCriterion("deposit not between", value1, value2, "deposit");
|
||||
return (Criteria) this;
|
||||
}
|
||||
|
||||
public Criteria andStatusIsNull() {
|
||||
addCriterion("status is null");
|
||||
return (Criteria) this;
|
||||
|
||||
Reference in New Issue
Block a user