Sfoglia il codice sorgente

服务专利资源的平台浏览量统计

XMTT 6 anni fa
parent
commit
8747809d70

+ 1 - 1
src/main/java/com/ekexiu/portal/views/pojo/PpatentSum.java

9
/**
9
/**
10
 * Created by TT on 2019/3/14.
10
 * Created by TT on 2019/3/14.
11
 */
11
 */
12
@ExtendView(fromSentence = "ppatent c INNER JOIN ppatent_day_sum cds on c.id = cds.id", tableAlias = "c")
12
@ExtendView(fromSentence = "ppatent c LEFT JOIN ppatent_day_sum cds on c.id = cds.id", tableAlias = "c")
13
public class PpatentSum extends Ppatent {
13
public class PpatentSum extends Ppatent {
14
    private int sum;
14
    private int sum;
15
    private String platform;
15
    private String platform;

+ 1 - 1
src/main/java/com/ekexiu/portal/views/pojo/ResourceSum.java

9
/**
9
/**
10
 * Created by TT on 2019/3/14.
10
 * Created by TT on 2019/3/14.
11
 */
11
 */
12
@ExtendView(fromSentence = "resource c INNER JOIN resource_day_sum cds on c.resource_id = cds.id", tableAlias = "c")
12
@ExtendView(fromSentence = "resource c LEFT JOIN resource_day_sum cds on c.resource_id = cds.id", tableAlias = "c")
13
public class ResourceSum extends Resource {
13
public class ResourceSum extends Resource {
14
    private int sum;
14
    private int sum;
15
15

+ 1 - 1
src/main/java/com/ekexiu/portal/views/pojo/WareSum.java

9
/**
9
/**
10
 * Created by TT on 2019/3/14.
10
 * Created by TT on 2019/3/14.
11
 */
11
 */
12
@ExtendView(fromSentence = "ware c INNER JOIN ware_day_sum cds on c.id = cds.id", tableAlias = "c")
12
@ExtendView(fromSentence = "ware c LEFT JOIN ware_day_sum cds on c.id = cds.id", tableAlias = "c")
13
public class WareSum extends Ware {
13
public class WareSum extends Ware {
14
    private int sum;
14
    private int sum;
15
    private String platform;
15
    private String platform;