Files
GEAR-OA/gear-oa/src/main/java/com/gear/oa/domain/GearOtherIncome.java
Joshi bb28f02aa8 feat(oa): 新增客户管理和资金日记账功能
- 添加客户管理相关实体、控制器、服务和映射
- 实现客户信息的增删改查功能
- 添加资金日记账相关实体、控制器、服务和映射
- 实现资金日记账的增删改查功能
- 优化数据库连接配置
- 更新 BOM 项关联的表名
2025-09-02 13:53:52 +08:00

60 lines
1.2 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.gear.oa.domain;
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.io.Serializable;
import java.util.Date;
import java.math.BigDecimal;
import java.math.BigDecimal;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
import com.gear.common.core.domain.BaseEntity;
/**
* 其他收入对象 gear_other_income
*
* @author Joshi
* @date 2025-09-02
*/
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("gear_other_income")
public class GearOtherIncome extends BaseEntity {
private static final long serialVersionUID=1L;
/**
* 其他收入ID主键
*/
@TableId(value = "other_income_id")
private Long otherIncomeId;
/**
* 收入日期
*/
private Date incomeDate;
/**
* 收入类型
*/
private String incomeType;
/**
* 收入金额
*/
private BigDecimal amount;
/**
* 收入来源
*/
private String source;
/**
* 备注
*/
private String remark;
/**
* 删除标志0=正常1=已删除)
*/
@TableLogic
private Integer delFlag;
}