liuxm
2024-05-21 707828bdc0759cb0ee749206f55e2da64f7304c1
pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/pojoPlt/PltProductParams.java
@@ -5,6 +5,7 @@
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.dy.common.po.BaseEntity;
import jakarta.validation.constraints.NotEmpty;
import lombok.*;
@@ -14,7 +15,7 @@
@ToString
@NoArgsConstructor
@AllArgsConstructor
public class PltProductParams {
public class PltProductParams  implements BaseEntity {
    /**
     * 主键
     */
@@ -25,6 +26,7 @@
    /**
    * 产品实体编号
    */
    @JSONField(serializeUsing= ObjectWriterImplToString.class)
    public Long proId;
    /**
@@ -39,15 +41,6 @@
    @NotEmpty(message = "技术参数值不能为空")
    public String paramValue;
    /**
    * 安装手册网文
    */
    public Long installManual;
    /**
    * 用户手册网文
    */
    public Long userManual;
    @JSONField(serialize = false)
    public Boolean deleted;
}