Преглед на файлове

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

XMTT преди 6 години
родител
ревизия
8747809d70

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

@ -9,7 +9,7 @@ import org.jfw.apt.orm.core.defaultImpl.StringHandler;
9 9
/**
10 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 13
public class PpatentSum extends Ppatent {
14 14
    private int sum;
15 15
    private String platform;

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

@ -9,7 +9,7 @@ import org.jfw.apt.orm.core.defaultImpl.StringHandler;
9 9
/**
10 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 13
public class ResourceSum extends Resource {
14 14
    private int sum;
15 15

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

@ -9,7 +9,7 @@ import org.jfw.apt.orm.core.defaultImpl.StringHandler;
9 9
/**
10 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 13
public class WareSum extends Ware {
14 14
    private int sum;
15 15
    private String platform;