Commit 0a31f83f authored by jiaorz's avatar jiaorz

发票接口

parent 3e0be9e0
...@@ -38,4 +38,9 @@ public class QueryOrderDTO extends PageParam { ...@@ -38,4 +38,9 @@ public class QueryOrderDTO extends PageParam {
private Integer type; private Integer type;
private String multiTypes; private String multiTypes;
/**
* 开票状态,0未开票,1已开票
*/
private Integer invoiceStatus;
} }
\ No newline at end of file
...@@ -68,6 +68,9 @@ ...@@ -68,6 +68,9 @@
<if test="type != null"> <if test="type != null">
and type = #{type} and type = #{type}
</if> </if>
<if test="invoiceStatus != null">
and invoice_status = #{invoiceStatus}
</if>
<if test="hasMemberRight != null"> <if test="hasMemberRight != null">
and has_member_right = #{hasMemberRight} and has_member_right = #{hasMemberRight}
</if> </if>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment