package com.ruoyi.cwgl.domain;
|
|
import java.math.BigDecimal;
|
import java.util.Date;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
import com.ruoyi.common.annotation.Excel;
|
import com.baomidou.mybatisplus.annotation.TableField;
|
import java.util.Date;
|
import lombok.Data;
|
/**
|
* 应收账单开票明细对象 receivable_invoice_business
|
*
|
* @author ruoyi
|
* @date 2026-01-27
|
*/
|
@Data
|
public class ReceivableInvoiceBusiness{
|
|
|
/** 主建 */
|
@TableField("id")
|
private Integer id;
|
|
|
/** 头id */
|
@Excel(name = "头id")
|
|
@TableField("head_id")
|
private Integer headId;
|
|
|
/** 发票流水号 */
|
@Excel(name = "发票流水号")
|
|
@TableField("invoice_serial_num")
|
private String invoiceSerialNum;
|
|
|
/** 状态 */
|
@Excel(name = "状态")
|
|
@TableField("status")
|
private Integer status;
|
|
|
/** 创建时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@TableField("create_time")
|
private Date createTime;
|
|
|
/** 更新时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@TableField("update_time")
|
private Date updateTime;
|
|
|
/** 订单号 */
|
@Excel(name = "订单号")
|
|
@TableField("order_sn")
|
private String orderSn;
|
|
|
/** 发票类型 */
|
@Excel(name = "发票类型")
|
|
@TableField("invoice_type")
|
private String invoiceType;
|
|
|
/** 发票税号 */
|
@Excel(name = "发票税号")
|
|
@TableField("invoice_tax")
|
private String invoiceTax;
|
|
|
/** 发票号码 */
|
@Excel(name = "发票号码")
|
|
@TableField("invoice_num")
|
private String invoiceNum;
|
|
|
/** 开票时间 */
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
@Excel(name = "开票时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
|
@TableField("invoice_time")
|
private Date invoiceTime;
|
|
|
/** 发票链接 */
|
@Excel(name = "发票链接")
|
|
@TableField("invoicing_url")
|
private String invoicingUrl;
|
|
|
/** 发票金额 */
|
@Excel(name = "发票金额")
|
|
@TableField("invoicing_amount")
|
private BigDecimal invoicingAmount;
|
|
|
/** 发票备注 */
|
@Excel(name = "发票备注")
|
|
@TableField("remark")
|
private String remark;
|
|
|
/** 发票链接ofd格式 */
|
@Excel(name = "发票链接ofd格式")
|
|
@TableField("invoicing_url_ofd")
|
private String invoicingUrlOfd;
|
|
|
/** 销方名称 */
|
@Excel(name = "销方名称")
|
|
@TableField("saler_name")
|
private String salerName;
|
|
|
/** 抬头公司 */
|
@Excel(name = "抬头公司")
|
|
@TableField("invoice_company_name")
|
private String invoiceCompanyName;
|
|
|
}
|