Commit 0a31f83f authored by jiaorz's avatar jiaorz

发票接口

parent 3e0be9e0
......@@ -38,4 +38,9 @@ public class QueryOrderDTO extends PageParam {
private Integer type;
private String multiTypes;
/**
* 开票状态,0未开票,1已开票
*/
private Integer invoiceStatus;
}
\ No newline at end of file
......@@ -68,6 +68,9 @@
<if test="type != null">
and type = #{type}
</if>
<if test="invoiceStatus != null">
and invoice_status = #{invoiceStatus}
</if>
<if test="hasMemberRight != null">
and has_member_right = #{hasMemberRight}
</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