Files
klp-oa/klp-wms/src/main/java/com/klp/domain/WmsReportDetail.java
JR f521692e08 feat(wms): 更新数据表名和接口前缀
- 将表名从"oa_"前缀改为"wms_"前缀
- 更新相关控制器的@RequestMapping路径
- 移除WmsReportSummaryMapper.xml中的projectId查询条件
- 注释掉rxgood页面的"涉及项目"列
2025-08-11 18:42:22 +08:00

63 lines
1.3 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.klp.domain;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableLogic;
import com.baomidou.mybatisplus.annotation.TableName;
import com.klp.common.core.domain.BaseEntity;
import lombok.Data;
import lombok.EqualsAndHashCode;
/**
* 设计项目汇报详情对象 oa_report_detail
*
* @author ruoyi
* @date 2025-05-13
*/
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("wms_report_detail")
public class WmsReportDetail extends BaseEntity {
private static final long serialVersionUID=1L;
/**
* 主键ID
*/
@TableId(value = "detail_id")
private Long detailId;
/**
* 关联汇报概述IDoa_report_summary.id
*/
private Long summaryId;
/**
* 设备唯一编号
*/
private String deviceCode;
/**
* 设备类别
*/
private String category;
/**
* 设备生产说明
*/
private String deviceDescription;
/**
* 汇报详情内容(含文字、图像说明等)
*/
private String reportDetail;
/**
* 关联图像 OSS ID 列表(逗号分隔)
*/
private String ossIds;
/**
* 删除标志0 正常1 删除)
*/
@TableLogic
private Long delFlag;
/**
* 备注
*/
private String remark;
}