Merge remote-tracking branch 'origin/master'

master
anthonywj 2 years ago
commit 1dc24a856c

@ -50,6 +50,7 @@ import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.math.BigDecimal;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Date; import java.util.Date;
import java.util.List; import java.util.List;

@ -92,7 +92,7 @@ public class IoOrderDetailBizEntity {
/** /**
* *
*/ */
@TableField(value = "price") @TableField(value = "price",fill = FieldFill.UPDATE)
private BigDecimal price; private BigDecimal price;
/** /**

@ -112,5 +112,7 @@ public class FilterBussinessTypeRequest extends ListPageRequest {
private Integer corpType; private Integer corpType;
private Integer sortNum; private Integer sortNum;
private Integer actionType;
} }

@ -33,6 +33,9 @@
<if test="secCheckEnable != null"> <if test="secCheckEnable != null">
AND bu.secCheckEnable = #{secCheckEnable} AND bu.secCheckEnable = #{secCheckEnable}
</if> </if>
<if test="actionType != null">
AND bu.actionType = #{actionType}
</if>
<if test="busType != null"> <if test="busType != null">
AND bu.busType = #{busType} AND bu.busType = #{busType}
</if> </if>

Loading…
Cancel
Save