Files
klp-oa/klp-wms/src/main/java/com/klp/domain/bo/WmsOrderProfitBo.java
JR 13d24f5693 feat(wms): 新增会计科目和财务单据相关功能
- 添加了会计科目、财务单据、日记账凭证等领域的实体类、控制器、服务接口、Mapper接口和XML映射文件
- 实现了基本的CRUD操作,包括查询、新增、修改和删除
- 优化了数据校验和批量删除逻辑
2025-08-13 10:33:03 +08:00

57 lines
830 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 java.math.BigDecimal;
/**
* 订单盈亏业务对象 wms_order_profit
*
* @author klp
* @date 2025-08-13
*/
@Data
@EqualsAndHashCode(callSuper = true)
public class WmsOrderProfitBo extends BaseEntity {
/**
* 盈亏ID主键
*/
private Long profitId;
/**
* 订单ID
*/
private Long orderId;
/**
* 成本金额
*/
private BigDecimal costAmount;
/**
* 收入金额
*/
private BigDecimal revenueAmount;
/**
* 利润金额
*/
private BigDecimal profitAmount;
/**
* 利润率(%)
*/
private BigDecimal profitRate;
/**
* 备注
*/
private String remark;
}