修改海纳川问题
parent
3c004324b1
commit
731b1c60ee
@ -0,0 +1,41 @@
|
||||
package cn.estsh.i3plus.pojo.ptl.bean;
|
||||
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.bean.BaseBean;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiParam;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
import org.hibernate.annotations.DynamicInsert;
|
||||
import org.hibernate.annotations.DynamicUpdate;
|
||||
|
||||
import javax.persistence.Column;
|
||||
import javax.persistence.Entity;
|
||||
import javax.persistence.Table;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* @author wangjie
|
||||
* @date 2020/2/12 17:41
|
||||
* @desc
|
||||
*/
|
||||
|
||||
@Data
|
||||
@Entity
|
||||
@DynamicInsert
|
||||
@DynamicUpdate
|
||||
@Table(name = "PTL_LOG")
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Api("PTL_LOG")
|
||||
public class PtlLog extends BaseBean implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 3885987217528730391L;
|
||||
|
||||
@Column(name = "METHOD_NAME")
|
||||
@ApiParam(value = "方法名")
|
||||
private String methodName;
|
||||
|
||||
@Column(name = "EXCEPTION_LOG")
|
||||
@ApiParam(value = "异常日志")
|
||||
private String exceptionLog;
|
||||
}
|
@ -0,0 +1,16 @@
|
||||
package cn.estsh.i3plus.pojo.ptl.repository;
|
||||
|
||||
|
||||
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||
import cn.estsh.i3plus.pojo.ptl.bean.IfPickData;
|
||||
import cn.estsh.i3plus.pojo.ptl.bean.PtlLog;
|
||||
|
||||
/**
|
||||
* @author wangjie
|
||||
* @date 2020/2/12 17:41
|
||||
* @desc
|
||||
*/
|
||||
|
||||
public interface PtlLogRepository extends BaseRepository<PtlLog, Long> {
|
||||
|
||||
}
|
Loading…
Reference in New Issue