Merge branch 'test' of http://git.estsh.com/i3-IMPP/i3plus-pojo into test
commit
0f92e2bbf9
@ -0,0 +1,50 @@
|
||||
package cn.estsh.i3plus.pojo.bsp.server.bean.po;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import com.thoughtworks.xstream.converters.extended.NamedMapConverter;
|
||||
import io.swagger.annotations.ApiModel;
|
||||
import io.swagger.annotations.ApiModelProperty;
|
||||
import lombok.*;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : Castle
|
||||
* @CreateDate : 2021/9/8 17:01
|
||||
* @Modify:
|
||||
**/
|
||||
@Table(name = "METHOD_LOG")
|
||||
@Entity
|
||||
@Data
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Builder
|
||||
@ApiModel("方法调用日志")
|
||||
public class MethodLog extends BaseBean implements Serializable {
|
||||
|
||||
@ApiModelProperty("调用方法名冗余字段")
|
||||
@Column(name = "METHOD_NAME_RDD")
|
||||
private String methodNameRdd;
|
||||
|
||||
@ApiModelProperty("方法id")
|
||||
@Column(name = "METHOD_ID")
|
||||
private Long methodId;
|
||||
|
||||
@ApiModelProperty("方法参数")
|
||||
@Column(name = "METHOD_PARAMS")
|
||||
private String methodParam;
|
||||
|
||||
@ApiModelProperty("方法调用日志信息")
|
||||
@Column(name = "MESSAGE",columnDefinition = " text ")
|
||||
private String message;
|
||||
|
||||
@ApiModelProperty("方法是否执行成功")
|
||||
@Column(name = "SUCCESS")
|
||||
private Integer success;
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.bsp.server.repository;
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.bsp.server.bean.po.MethodLog;
|
||||
import org.springframework.stereotype.Repository;
|
||||
|
||||
/**
|
||||
* @Description :
|
||||
* @Reference :
|
||||
* @Author : Castle
|
||||
* @CreateDate : 2021/9/8 17:13
|
||||
* @Modify:
|
||||
**/
|
||||
@Repository
|
||||
public interface MethodLogRepository extends BaseRepository<MethodLog,Long> {
|
||||
}
|
@ -0,0 +1,26 @@
|
||||
package cn.estsh.i3plus.pojo.platform.bean;
|
||||
|
||||
import io.swagger.annotations.Api;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @Description :冷热数据分离消息队列消息
|
||||
* @Reference :
|
||||
* @Author : Castle
|
||||
* @CreateDate : 2021/9/23 13:59
|
||||
* @Modify:
|
||||
**/
|
||||
@Data
|
||||
@Api(value = "冷热分离消息")
|
||||
public class DataSeparatorMessage implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -1;
|
||||
|
||||
private Long id;
|
||||
|
||||
private String refClass;
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue