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

55 lines
1.0 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;
import java.util.Date;
/**
* 设计项目汇报概述对象 oa_report_summary
*
* @author cpy
* @date 2025-05-13
*/
@Data
@EqualsAndHashCode(callSuper = true)
@TableName("wms_report_summary")
public class WmsReportSummary extends BaseEntity {
private static final long serialVersionUID=1L;
/**
* 主键ID
*/
@TableId(value = "summary_id")
private Long summaryId;
/**
* 汇报标题
*/
private String reportTitle;
/**
* 汇报日期
*/
private Date reportDate;
/**
* 汇报人
*/
private String reporter;
/**
* 删除标志0 正常1 删除)
*/
@TableLogic
private Long delFlag;
/**
* 备注
*/
private String remark;
private Long type;
}