package com.mini.capi.biz.domain; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableField; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import java.io.Serializable; import java.time.LocalDateTime; import lombok.Getter; import lombok.Setter; /** *
* 收入来源表 *
* * @author gaoxq * @since 2025-11-08 */ @Getter @Setter @TableName("biz_income_sources") public class IncomeSources implements Serializable { private static final long serialVersionUID = 1L; /** * 创建时间 */ @TableField("create_time") private LocalDateTime createTime; /** * 收入来源ID */ @TableId(value = "source_id", type = IdType.AUTO) private String sourceId; /** * 来源名称 */ @TableField("cname") private String cname; /** * 来源描述 */ @TableField("description") private String description; /** * 租户id */ @TableField("f_tenant_id") private String fTenantId; /** * 流程id */ @TableField("f_flow_id") private String fFlowId; /** * 流程任务主键 */ @TableField("f_flow_task_id") private String fFlowTaskId; /** * 流程任务状态 */ @TableField("f_flow_state") private Integer fFlowState; }