package com.ruoyi.cwgl.domain; import java.math.BigDecimal; 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; /** * 发票业务商品明细对象 invoice_bill_detail * * @author ruoyi * @date 2026-01-07 */ @Data public class InvoiceBillDetail{ /** 主建 */ @TableField("id") private Integer id; /** 发票管理id */ @Excel(name = "发票管理id") @TableField("invoice_manage_id") private Integer invoiceManageId; /** 商品名称 */ @Excel(name = "商品名称") @TableField("goods_name") private String goodsName; private String goodsCode; /** 发票金额 */ @Excel(name = "发票金额") @TableField("price") private BigDecimal price; /** 状态 */ @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; /** 单价含税标志:0:不含税,1:含税 */ @Excel(name = "单价含税标志:0:不含税,1:含税") @TableField("with_tax_flag") private Integer withTaxFlag; }