mirror of https://github.com/longtai-cn/hippo4j
parent
435d424dd3
commit
b027775329
@ -0,0 +1,15 @@
|
||||
package cn.hippo4j.config.mapper;
|
||||
|
||||
import cn.hippo4j.config.model.ConfigInstanceInfo;
|
||||
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
* Config instance mapper.
|
||||
*
|
||||
* @author chen.ma
|
||||
* @date 2021/12/5 19:18
|
||||
*/
|
||||
@Mapper
|
||||
public interface ConfigInstanceMapper extends BaseMapper<ConfigInstanceInfo> {
|
||||
}
|
@ -0,0 +1,60 @@
|
||||
package cn.hippo4j.config.model;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* Config instance info.
|
||||
*
|
||||
* @author chen.ma
|
||||
* @date 2021/12/5 19:19
|
||||
*/
|
||||
@Data
|
||||
@TableName("config_instance")
|
||||
public class ConfigInstanceInfo {
|
||||
|
||||
/**
|
||||
* ID
|
||||
*/
|
||||
@TableId(type = IdType.AUTO)
|
||||
private Long id;
|
||||
|
||||
/**
|
||||
* tenantId
|
||||
*/
|
||||
private String tenantId;
|
||||
|
||||
/**
|
||||
* itemId
|
||||
*/
|
||||
private String itemId;
|
||||
|
||||
/**
|
||||
* tpId
|
||||
*/
|
||||
private String tpId;
|
||||
|
||||
/**
|
||||
* instanceId
|
||||
*/
|
||||
private String instanceId;
|
||||
|
||||
/**
|
||||
* MD5
|
||||
*/
|
||||
private String md5;
|
||||
|
||||
/**
|
||||
* content
|
||||
*/
|
||||
private String content;
|
||||
|
||||
/**
|
||||
* gmtCreate
|
||||
*/
|
||||
@TableField(fill = FieldFill.INSERT)
|
||||
private Date gmtCreate;
|
||||
|
||||
}
|
Loading…
Reference in new issue