新增发票表,结算表字段
This commit is contained in:
parent
de61b4bb35
commit
803102f206
@ -79,4 +79,9 @@ private static final long serialVersionUID=1L;
|
|||||||
* 开票类型
|
* 开票类型
|
||||||
*/
|
*/
|
||||||
private Integer invoiceType;
|
private Integer invoiceType;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 开票金额
|
||||||
|
*/
|
||||||
|
private BigDecimal invoiceAmount;
|
||||||
}
|
}
|
||||||
|
@ -106,4 +106,14 @@ public class FtSettleDao implements Serializable {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
private Date selectBillingDate;
|
private Date selectBillingDate;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 开票标志
|
||||||
|
*/
|
||||||
|
private Boolean invoiceFlag;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 发票 id
|
||||||
|
*/
|
||||||
|
private Long invoiceId;
|
||||||
}
|
}
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
<result property="invoiceName" column="invoice_name"/>
|
<result property="invoiceName" column="invoice_name"/>
|
||||||
<result property="taxId" column="tax_id"/>
|
<result property="taxId" column="tax_id"/>
|
||||||
<result property="invoiceType" column="invoice_type"/>
|
<result property="invoiceType" column="invoice_type"/>
|
||||||
|
<result property="invoiceAmount" column="invoice_amount"/>
|
||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
|
|
||||||
|
@ -16,6 +16,8 @@
|
|||||||
<result property="type" column="type"/>
|
<result property="type" column="type"/>
|
||||||
<result property="flag" column="flag"/>
|
<result property="flag" column="flag"/>
|
||||||
<result property="refund" column="refund"/>
|
<result property="refund" column="refund"/>
|
||||||
|
<result property="invoiceId" column="invoice_id"/>
|
||||||
|
<result property="invoiceFlag" column="invoice_flag"/>
|
||||||
</resultMap>
|
</resultMap>
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user