com.founder.core.domain.IeMsgSendStep02 Maven / Gradle / Ivy
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