package com.nq.pojo; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import lombok.Data; @Data public class PayChnnel { @TableId(value = "id",type = IdType.AUTO) private Integer id; private String channelName; private String channelDesc; private String channelMethod; private String channelType; private String isShow; private String sort; }