package com.ruoyi.cwgl.domain; import java.math.BigDecimal; import java.util.List; import java.util.Date; import com.fasterxml.jackson.annotation.JsonFormat; import com.ruoyi.common.annotation.Excel; import com.baomidou.mybatisplus.annotation.TableField; import lombok.Data; /** * 应付费用管理对象 payable_fee_management * * @author ruoyi * @date 2025-12-17 */ @Data public class PayableFeeManagement{ /** ID */ @TableField("id") private Integer id; /** 系统编号 */ @Excel(name = "系统编号") @TableField("system_no") private String systemNo; /** 关联账单编号 */ @Excel(name = "关联账单编号") @TableField("related_bill_no") private String relatedBillNo; /** 来源系统 */ @Excel(name = "来源系统") @TableField("source_system") private String sourceSystem; /** 业务板块 */ @Excel(name = "业务板块") @TableField("business_sector") private String businessSector; /** 单据类型 */ @Excel(name = "单据类型") @TableField("document_type") private String documentType; /** 单据编号 */ @Excel(name = "单据编号") @TableField("document_no") private String documentNo; /** 是否内部结算 */ @Excel(name = "是否内部结算") @TableField("is_internal_settlement") private String isInternalSettlement; /** 内部结算单位 */ @Excel(name = "内部结算单位") @TableField("internal_settlement_unit") private String internalSettlementUnit; /** 供应商名称 */ @Excel(name = "供应商名称") @TableField("supplier_name") private String supplierName; /** 项目名称 */ @Excel(name = "项目名称") @TableField("project_name") private String projectName; /** 业务发生时间 */ @JsonFormat(pattern = "yyyy-MM-dd") @Excel(name = "业务发生时间", width = 30, dateFormat = "yyyy-MM-dd") @TableField("business_time") private Date businessTime; /** 应付确认时间 */ @JsonFormat(pattern = "yyyy-MM-dd") @Excel(name = "应付确认时间", width = 30, dateFormat = "yyyy-MM-dd") @TableField("payable_confirm_time") private Date payableConfirmTime; /** 应付金额 */ @Excel(name = "应付金额") @TableField("payable_amount") private BigDecimal payableAmount; /** 状态 */ @Excel(name = "状态") @TableField("status") private String status; /** 备注 */ @Excel(name = "备注") @TableField("remark") private String remark; /** 创建人 */ @TableField("create_by") private String createBy; /** 创建时间 */ @JsonFormat(pattern = "yyyy-MM-dd") @TableField("create_time") private Date createTime; /** 更新人 */ @TableField("update_by") private String updateBy; /** 更新时间 */ @JsonFormat(pattern = "yyyy-MM-dd") @TableField("update_time") private Date updateTime; /** 删除标记(0:正常;1:删除) */ @Excel(name = "删除标记(0:正常;1:删除)") @TableField("deleted") private Integer deleted; /** 应付费用明细列表 */ @TableField(exist = false) private List payableFeeDetailList; }