- 替换 CommissionRateConfig 为 CommissionConfig,支持 commissionType 字段区分固定金额和百分比模式 - 新增 calcMoneyByCommissionType 方法,根据 commissionType 计算佣金金额 - 修改 findOrderSingleGoods 为 findOrderSingleGoodsInfo,返回商品信息和数量 - 更新日志输出格式,显示商品数量和佣金类型信息 - 调整信用分销商佣金方法参数,传递商品数量和佣金配置对象 - 新增 OrderGoodsInfo 和 CommissionConfig 内部类定义 - 实现固定金额模式按件计算佣金的逻辑 - 添加安全数值处理方法 safeValue 和 safePositive - 更新佣金注释构建方法,显示佣金类型和具体数值信息
114 lines
3.0 KiB
Java
114 lines
3.0 KiB
Java
package com.gxwebsoft.credit.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import lombok.Data;
|
|
import lombok.EqualsAndHashCode;
|
|
|
|
import java.io.Serializable;
|
|
import java.math.BigDecimal;
|
|
import java.time.LocalDate;
|
|
import java.time.LocalDateTime;
|
|
|
|
/**
|
|
* 裁判文书司法大数据
|
|
*
|
|
* @author 科技小王子
|
|
* @since 2025-12-19 19:51:02
|
|
*/
|
|
@Data
|
|
@EqualsAndHashCode(callSuper = false)
|
|
@Schema(name = "CreditJudicialDocument对象", description = "裁判文书司法大数据")
|
|
public class CreditJudicialDocument implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@Schema(description = "ID")
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
private Integer id;
|
|
|
|
@Schema(description = "文书标题")
|
|
private String title;
|
|
|
|
@Schema(description = "案号")
|
|
private String caseNumber;
|
|
|
|
@Schema(description = "链接地址")
|
|
private String url;
|
|
|
|
@Schema(description = "案由")
|
|
private String causeOfAction;
|
|
|
|
@Schema(description = "当事人")
|
|
private String otherPartiesThirdParty;
|
|
|
|
@Schema(description = "案件金额(元)")
|
|
private String involvedAmount;
|
|
|
|
@Schema(description = "裁判结果")
|
|
private String defendantAppellee;
|
|
|
|
@Schema(description = "裁判日期")
|
|
private String occurrenceTime;
|
|
|
|
@Schema(description = "发布日期")
|
|
private String releaseDate;
|
|
|
|
@Schema(description = "被告/被上诉人")
|
|
private String appellee;
|
|
|
|
@Schema(description = "法院")
|
|
private String courtName;
|
|
|
|
@Schema(description = "数据状态")
|
|
private String dataStatus;
|
|
|
|
@Schema(description = "企业ID")
|
|
private Integer companyId;
|
|
|
|
@Schema(description = "企业名称")
|
|
@TableField(exist = false)
|
|
private String companyName;
|
|
|
|
@Schema(description = "是否有数据")
|
|
private Boolean hasData;
|
|
|
|
@Schema(description = "备注")
|
|
private String comments;
|
|
|
|
@Schema(description = "是否推荐")
|
|
private Integer recommend;
|
|
|
|
@Schema(description = "排序(数字越小越靠前)")
|
|
private Integer sortNumber;
|
|
|
|
@Schema(description = "状态, 0正常, 1冻结")
|
|
private Integer status;
|
|
|
|
@Schema(description = "是否删除, 0否, 1是")
|
|
@TableLogic
|
|
private Integer deleted;
|
|
|
|
@Schema(description = "用户ID")
|
|
private Integer userId;
|
|
|
|
@Schema(description = "真实姓名")
|
|
@TableField(exist = false)
|
|
private String realName;
|
|
|
|
@Schema(description = "租户id")
|
|
private Integer tenantId;
|
|
|
|
@Schema(description = "创建时间")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
private LocalDateTime createTime;
|
|
|
|
@Schema(description = "修改时间")
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
|
private LocalDateTime updateTime;
|
|
|
|
}
|