Browse Source

统计数据

XMTT 6 years ago
parent
commit
9a65557332
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/java/com/ekexiu/project/platform/views/pojo/OrgSum.java

+ 1 - 1
src/main/java/com/ekexiu/project/platform/views/pojo/OrgSum.java

@ -8,7 +8,7 @@ import org.jfw.apt.orm.core.defaultImpl.IntHandler;
8 8
/**
9 9
 * Created by TT on 2019/3/13.
10 10
 */
11
@ExtendView(fromSentence = "organization c INNER JOIN organization_day_sum cds on c.id = cds.id",tableAlias = "c")
11
@ExtendView(fromSentence = "organization c LEFT JOIN organization_day_sum cds on c.id = cds.id",tableAlias = "c")
12 12
public class OrgSum extends Organization {
13 13
    private int sum;
14 14