package com.cyksj.model.entity; import com.baomidou.mybatisplus.annotation.FieldStrategy; import com.baomidou.mybatisplus.annotation.TableField; import com.ejlchina.searcher.bean.DbIgnore; import lombok.Getter; import lombok.Setter; import java.util.List; /** * 项目名: yhlxj2 * 文件名: GoodsDonQa * 创建者: JavaZou * 创建时间:2024/5/24 11:47 */ @Getter @Setter public class GoodsDonQa extends BaseEntity{ /** * 1.售前,2.售后 */ private Integer type; private String problem; @TableField(updateStrategy = FieldStrategy.IGNORED) private String content; /** * 跳转链接 */ @TableField(updateStrategy = FieldStrategy.IGNORED) private String url; private Boolean status; private Boolean deleted; @TableField(updateStrategy = FieldStrategy.IGNORED) private Integer sorted; @DbIgnore @TableField(exist = false) private List goodsIds; }