大屏项目初始化
This commit is contained in:
@@ -0,0 +1,92 @@
|
||||
package com.mini.mybigscreen.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;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 收支分类
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2026-02-27
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("erp_category")
|
||||
public class ErpCategory implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 分类标识
|
||||
*/
|
||||
@TableId(value = "category_id", type = IdType.AUTO)
|
||||
private String categoryId;
|
||||
|
||||
/**
|
||||
* 分类名称
|
||||
*/
|
||||
@TableField("category_name")
|
||||
private String categoryName;
|
||||
|
||||
/**
|
||||
* 分类类型
|
||||
*/
|
||||
@TableField("category_type")
|
||||
private String categoryType;
|
||||
|
||||
/**
|
||||
* 父分类ID(0-一级分类)
|
||||
*/
|
||||
@TableField("parent_id")
|
||||
private String parentId;
|
||||
|
||||
/**
|
||||
* 排序序号
|
||||
*/
|
||||
@TableField("sort_order")
|
||||
private String sortOrder;
|
||||
|
||||
/**
|
||||
* 是否启用
|
||||
*/
|
||||
@TableField("is_active")
|
||||
private String isActive;
|
||||
|
||||
@TableField("update_time")
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
/**
|
||||
* 租户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;
|
||||
}
|
||||
@@ -0,0 +1,102 @@
|
||||
package com.mini.mybigscreen.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.math.BigDecimal;
|
||||
import java.time.LocalDateTime;
|
||||
import lombok.Getter;
|
||||
import lombok.Setter;
|
||||
|
||||
/**
|
||||
* <p>
|
||||
* 收支流水总表
|
||||
* </p>
|
||||
*
|
||||
* @author gaoxq
|
||||
* @since 2026-02-27
|
||||
*/
|
||||
@Getter
|
||||
@Setter
|
||||
@TableName("erp_transaction_flow_view")
|
||||
public class ErpTransactionFlow implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
@TableField("create_time")
|
||||
private LocalDateTime createTime;
|
||||
|
||||
/**
|
||||
* 流水ID
|
||||
*/
|
||||
@TableId(value = "flow_id", type = IdType.AUTO)
|
||||
private String flowId;
|
||||
|
||||
/**
|
||||
* 交易名称
|
||||
*/
|
||||
@TableField("flow_name")
|
||||
private String flowName;
|
||||
|
||||
/**
|
||||
* 交易类型
|
||||
*/
|
||||
@TableField("transaction_type")
|
||||
private String transactionType;
|
||||
|
||||
/**
|
||||
* 交易金额(正数)
|
||||
*/
|
||||
@TableField("amount")
|
||||
private BigDecimal amount;
|
||||
|
||||
/**
|
||||
* 交易时间
|
||||
*/
|
||||
@TableField("transaction_time")
|
||||
private String transactionTime;
|
||||
|
||||
/**
|
||||
* 交易账户
|
||||
*/
|
||||
@TableField("account_id")
|
||||
private String accountId;
|
||||
|
||||
/**
|
||||
* 交易分类
|
||||
*/
|
||||
@TableField("category_id")
|
||||
private String categoryId;
|
||||
|
||||
/**
|
||||
* 交易备注
|
||||
*/
|
||||
@TableField("remark")
|
||||
private String remark;
|
||||
|
||||
/**
|
||||
* 是否记账
|
||||
*/
|
||||
@TableField("is_finish")
|
||||
private String isFinish;
|
||||
|
||||
@TableField("update_time")
|
||||
private LocalDateTime updateTime;
|
||||
|
||||
/**
|
||||
* 账户名称
|
||||
*/
|
||||
@TableField("account_name")
|
||||
private String accountName;
|
||||
|
||||
/**
|
||||
* 分类名称
|
||||
*/
|
||||
@TableField("category_name")
|
||||
private String categoryName;
|
||||
|
||||
@TableField("tran_type")
|
||||
private String tranType;
|
||||
}
|
||||
Reference in New Issue
Block a user