All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.founder.core.domain.IeMsgSendStep02 Maven / Gradle / Ivy

There is a newer version: 3.6.1.9
Show newest version
package com.founder.core.domain;

import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;

import java.io.Serializable;

@TableName("ie_msg_send_step02")
public class IeMsgSendStep02 extends IeMsgSendStep01 implements Serializable {

    @TableId(value = "id",type = IdType.AUTO)
    private Integer id;

    @Override
    public Integer getId() {
        return id;
    }

    @Override
    public void setId(Integer id) {
        this.id = id;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy