Files
klp-oa/klp-wms/src/main/java/com/klp/domain/bo/WmsOtherIncomeBo.java
Joshi ffd8eebe60 feat(wms): 新增其他收支管理功能
- 新增其他收支实体类WmsOtherIncome及其相关VO、BO类
- 实现其他收支的增删改查接口IWmsOtherIncomeService
- 添加其他收支控制器WmsOtherIncomeController支持RESTful请求
- 配置MyBatis映射文件及Mapper接口支持数据库操作
- 在应付和应收业务中增加时间范围筛选字段和逻辑
2025-09-26 14:21:14 +08:00

60 lines
926 B
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.klp.domain.bo;
import com.klp.common.core.domain.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
import javax.validation.constraints.*;
import java.math.BigDecimal;
import java.util.Date;
import com.fasterxml.jackson.annotation.JsonFormat;
/**
* 其他收支业务对象 wms_other_income
*
* @author Joshi
* @date 2025-09-26
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class WmsOtherIncomeBo extends BaseEntity {
/**
* 其他收入ID主键
*/
private Long otherIncomeId;
/**
* 日期
*/
private Date incomeDate;
/**
* 类型
*/
private String incomeType;
/**
* 金额
*/
private BigDecimal amount;
/**
* 来源
*/
private String source;
/**
* 收支类型(0=收入,1=值出)
*/
private Long type;
/**
* 备注
*/
private String remark;
}