package com.bofeng.entity; import com.baomidou.mybatisplus.annotations.TableField; import com.baomidou.mybatisplus.annotations.TableId; import com.baomidou.mybatisplus.annotations.TableName; import lombok.Getter; import lombok.Setter; import lombok.ToString; @Getter @Setter @ToString @TableName("id_rule") public class IdRule { @TableId("id_name") private String idName; @TableField("id_desc") private String idDesc; @TableField("id_type") private String idType; @TableField("seq_type") private String seqType; @TableField("id_express") private String idExpress; }