package com.mini.capi.biz.domain; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableName; import java.io.Serializable; import java.math.BigDecimal; import lombok.Getter; import lombok.Setter; /** *
* VIEW *
* * @author gaoxq * @since 2025-11-11 */ @Getter @Setter @TableName("erp_period_summary_week_view") public class ErpPeriodSummaryWeekView implements Serializable { private static final long serialVersionUID = 1L; @TableField("category_name") private String categoryName; @TableField("account_name") private String accountName; @TableField("f_full_name") private String fFullName; @TableField("type") private String type; @TableField("amount") private BigDecimal amount; }