单据类型界面修改

master
郑明梁 2 years ago
parent 65daf0ce09
commit 752ff7ce8f

@ -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>
@ -52,7 +55,7 @@
]]> ]]>
</if> </if>
</where> </where>
order by bu.sortNum desc order by bu.sortNum
</select> </select>
<insert id="insertIgnoreBussinessType" parameterType="com.glxp.api.entity.basic.BasicBussinessTypeEntity"> <insert id="insertIgnoreBussinessType" parameterType="com.glxp.api.entity.basic.BasicBussinessTypeEntity">

Loading…
Cancel
Save