Merge remote-tracking branch 'origin/dev' into dev
commit
b0f3873aea
@ -0,0 +1,31 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.model.common;
|
||||||
|
|
||||||
|
import io.swagger.annotations.ApiParam;
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
import java.io.Serializable;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : wei.peng
|
||||||
|
* @CreateDate : 20-5-29 下午3:40
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
public class ThreadModel implements Serializable {
|
||||||
|
|
||||||
|
@ApiParam(value ="自定义调用ID")
|
||||||
|
private Long requestId;
|
||||||
|
@ApiParam(value ="当前用户ID")
|
||||||
|
private Long userId;
|
||||||
|
@ApiParam(value ="当前用户名称")
|
||||||
|
private String userName;
|
||||||
|
@ApiParam(value ="用户登录IP")
|
||||||
|
private String userHost;
|
||||||
|
@ApiParam(value ="用户登录浏览器")
|
||||||
|
private String userBrowser;
|
||||||
|
@ApiParam(value ="用户登录操作系统")
|
||||||
|
private String userOs;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,45 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.report.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;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : wei.peng
|
||||||
|
* @CreateDate : 20-5-28 下午3:33
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
@Data
|
||||||
|
@Entity
|
||||||
|
@DynamicInsert
|
||||||
|
@DynamicUpdate
|
||||||
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@Table(name="BR_CSS_STYLE")
|
||||||
|
@Api(value="自定义样式")
|
||||||
|
public class BrCssStyle extends BaseBean {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = 8651392479116992679L;
|
||||||
|
|
||||||
|
@Column(name="STYLE_CODE")
|
||||||
|
@ApiParam(value ="样式编码")
|
||||||
|
private String styleCode;
|
||||||
|
|
||||||
|
@Column(name="STYLE_CONTENT")
|
||||||
|
@ApiParam(value ="样式内容")
|
||||||
|
private String styleContent;
|
||||||
|
|
||||||
|
@Column(name="STYLE_DESCRIPTION")
|
||||||
|
@ApiParam(value ="样式描述")
|
||||||
|
private String styleDescription;
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,15 @@
|
|||||||
|
package cn.estsh.i3plus.pojo.report.repository;
|
||||||
|
|
||||||
|
import cn.estsh.i3plus.pojo.base.jpa.dao.BaseRepository;
|
||||||
|
import cn.estsh.i3plus.pojo.report.bean.BrCssStyle;
|
||||||
|
import cn.estsh.i3plus.pojo.report.bean.BrElement;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Description :
|
||||||
|
* @Reference :
|
||||||
|
* @Author : wei.peng
|
||||||
|
* @CreateDate : 20-5-28 下午3:39
|
||||||
|
* @Modify:
|
||||||
|
**/
|
||||||
|
public interface BrCssStyleRepository extends BaseRepository<BrCssStyle,Long> {
|
||||||
|
}
|
Loading…
Reference in New Issue