parent
4946442848
commit
fa2e62e6aa
@ -0,0 +1,20 @@ |
|||||||
|
package com.dxhy.erp.dao; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.dxhy.erp.entity.BaseTDxRecordInvoiceDetail; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
|
||||||
|
/** |
||||||
|
* |
||||||
|
* |
||||||
|
* 底账明细表dao |
||||||
|
* |
||||||
|
* |
||||||
|
* @author peipei.li |
||||||
|
* @date 2019-04-23 |
||||||
|
*/ |
||||||
|
@SuppressWarnings("AlibabaClassNamingShouldBeCamel") |
||||||
|
@Mapper |
||||||
|
public interface BaseTDxRecordInvoiceDetailDao extends BaseMapper<BaseTDxRecordInvoiceDetail> { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,14 @@ |
|||||||
|
package com.dxhy.erp.dao; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
||||||
|
import com.dxhy.erp.entity.RecordInvoiceSaleDetailModel; |
||||||
|
import org.apache.ibatis.annotations.Mapper; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author user |
||||||
|
*/ |
||||||
|
@SuppressWarnings({"AlibabaLowerCamelCaseVariableNaming", "AlibabaClassNamingShouldBeCamel"}) |
||||||
|
@Mapper |
||||||
|
public interface InvoiceDownDetaiSaleInsertDao extends BaseMapper<RecordInvoiceSaleDetailModel> { |
||||||
|
|
||||||
|
} |
@ -0,0 +1,118 @@ |
|||||||
|
package com.dxhy.erp.entity; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.io.Serializable; |
||||||
|
|
||||||
|
/** |
||||||
|
* |
||||||
|
* |
||||||
|
* 底账明细表 |
||||||
|
* |
||||||
|
* @author peipei.li |
||||||
|
* @date 2019-04-23 |
||||||
|
*/ |
||||||
|
@SuppressWarnings("AlibabaClassNamingShouldBeCamel") |
||||||
|
@Data |
||||||
|
@TableName("t_dx_record_invoice_detail") |
||||||
|
public class BaseTDxRecordInvoiceDetail implements Serializable { |
||||||
|
|
||||||
|
private static final long serialVersionUID = -6703830991573450761L; |
||||||
|
|
||||||
|
/** |
||||||
|
* id |
||||||
|
*/ |
||||||
|
private Long id; |
||||||
|
|
||||||
|
/** |
||||||
|
* 唯一标识(发票代码+发票号码) |
||||||
|
*/ |
||||||
|
private String uuid; |
||||||
|
|
||||||
|
/** |
||||||
|
* 发票代码 |
||||||
|
*/ |
||||||
|
private String invoiceCode; |
||||||
|
|
||||||
|
/** |
||||||
|
* 发票号码 |
||||||
|
*/ |
||||||
|
private String invoiceNo; |
||||||
|
|
||||||
|
/** |
||||||
|
* 明细序号 |
||||||
|
*/ |
||||||
|
private String detailNo; |
||||||
|
|
||||||
|
/** |
||||||
|
* 货物或应税劳务名称 |
||||||
|
*/ |
||||||
|
private String goodsName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 规格型号 |
||||||
|
*/ |
||||||
|
private String model; |
||||||
|
|
||||||
|
/** |
||||||
|
* 单位 |
||||||
|
*/ |
||||||
|
private String unit; |
||||||
|
|
||||||
|
/** |
||||||
|
* 数量 |
||||||
|
*/ |
||||||
|
private String num; |
||||||
|
|
||||||
|
/** |
||||||
|
* 单价 |
||||||
|
*/ |
||||||
|
private String unitPrice; |
||||||
|
|
||||||
|
/** |
||||||
|
* 金额 |
||||||
|
*/ |
||||||
|
private String detailAmount; |
||||||
|
|
||||||
|
/** |
||||||
|
* 税率 |
||||||
|
*/ |
||||||
|
private String taxRate; |
||||||
|
|
||||||
|
/** |
||||||
|
* 税额 |
||||||
|
*/ |
||||||
|
private String taxAmount; |
||||||
|
|
||||||
|
/** |
||||||
|
* 车牌号 |
||||||
|
*/ |
||||||
|
private String cph; |
||||||
|
|
||||||
|
/** |
||||||
|
* 类型 |
||||||
|
*/ |
||||||
|
private String lx; |
||||||
|
|
||||||
|
/** |
||||||
|
* 通行日期起 |
||||||
|
*/ |
||||||
|
private String txrqq; |
||||||
|
|
||||||
|
/** |
||||||
|
* 通行日期止 |
||||||
|
*/ |
||||||
|
private String txrqz; |
||||||
|
|
||||||
|
/** |
||||||
|
* 商品编码 |
||||||
|
*/ |
||||||
|
private String goodsNum; |
||||||
|
|
||||||
|
/** |
||||||
|
* 商品编码 |
||||||
|
*/ |
||||||
|
private String spfwjc; |
||||||
|
|
||||||
|
} |
@ -0,0 +1,94 @@ |
|||||||
|
package com.dxhy.erp.entity; |
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableId; |
||||||
|
import com.baomidou.mybatisplus.annotation.TableName; |
||||||
|
import lombok.Data; |
||||||
|
import lombok.Getter; |
||||||
|
import lombok.Setter; |
||||||
|
import lombok.ToString; |
||||||
|
|
||||||
|
/** |
||||||
|
* 专普电明细 |
||||||
|
* |
||||||
|
* @author jiaohongyang |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
@Getter |
||||||
|
@Setter |
||||||
|
@ToString |
||||||
|
@TableName("t_dx_record_invoice_detail_sales") |
||||||
|
public class RecordInvoiceSaleDetailModel { |
||||||
|
@TableId |
||||||
|
private Long id; |
||||||
|
/** |
||||||
|
* 货物或应税劳务名称 |
||||||
|
*/ |
||||||
|
private String goodsName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 规格型号 |
||||||
|
*/ |
||||||
|
private String model; |
||||||
|
|
||||||
|
/** |
||||||
|
* 单位 |
||||||
|
*/ |
||||||
|
private String unit; |
||||||
|
|
||||||
|
/** |
||||||
|
* 数量 |
||||||
|
*/ |
||||||
|
private String num; |
||||||
|
|
||||||
|
/** |
||||||
|
* 单价 |
||||||
|
*/ |
||||||
|
private String unitPrice; |
||||||
|
|
||||||
|
/** |
||||||
|
* 金额 |
||||||
|
*/ |
||||||
|
private String detailAmount; |
||||||
|
|
||||||
|
/** |
||||||
|
* 税率 |
||||||
|
*/ |
||||||
|
private String taxRate; |
||||||
|
|
||||||
|
/** |
||||||
|
* 税额 |
||||||
|
*/ |
||||||
|
private String taxAmount; |
||||||
|
|
||||||
|
/** |
||||||
|
* 车牌号 |
||||||
|
*/ |
||||||
|
private String cph; |
||||||
|
|
||||||
|
/** |
||||||
|
* 类型 |
||||||
|
*/ |
||||||
|
private String lx; |
||||||
|
|
||||||
|
/** |
||||||
|
* 通行日期起 |
||||||
|
*/ |
||||||
|
private String txrqq; |
||||||
|
|
||||||
|
/** |
||||||
|
* 通行日期止 |
||||||
|
*/ |
||||||
|
private String txrqz; |
||||||
|
|
||||||
|
/** |
||||||
|
* 商品编码 |
||||||
|
*/ |
||||||
|
private String goodsNum; |
||||||
|
|
||||||
|
private String uuid; |
||||||
|
|
||||||
|
private String invoiceCode; |
||||||
|
|
||||||
|
private String invoiceNo; |
||||||
|
|
||||||
|
} |
Loading…
Reference in new issue