package com.doumee.dao.business.model; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.Data; @Data @TableName("`preselect_order_seq`") public class PreselectOrderSeq { @TableId(type = IdType.AUTO) private Integer id; private String seqKey; private Integer seqVal; }