提交 21c9621e 作者: zhangqiliang

退货审核之后,填写退货的物流单号;

父级 214a6e29
......@@ -32,6 +32,7 @@
<result column="check_user_name" jdbcType="VARCHAR" property="checkUserName" />
<result column="check_suggestion" jdbcType="VARCHAR" property="checkSuggestion" />
<result column="out_order_id" jdbcType="VARCHAR" property="outOrderId" />
<result column="reject_logistic_order" jdbcType="VARCHAR" property="rejectLogisticOrder" />
</resultMap>
<sql id="Example_Where_Clause">
<where>
......@@ -509,6 +510,9 @@
<if test="checkSuggestion != null">
check_suggestion = #{checkSuggestion,jdbcType=VARCHAR},
</if>
<if test="rejectLogisticOrder != null">
reject_logistic_order = #{rejectLogisticOrder,jdbcType=VARCHAR},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
......
......@@ -256,6 +256,13 @@ public class DeliveryUpdateDTO{
*/
@ApiModelProperty(value = "车企单号")
private String outOrderId;
/**
* 退货的物流单号
*
* @mbg.generated
*/
@ApiModelProperty(value = "退货的物流单号")
private String rejectLogisticOrder;
private static final long serialVersionUID = 1L;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论