Sfoglia il codice sorgente

去掉orgType的默认值

XMTT 7 anni fa
parent
commit
d516e3d2bf

+ 1 - 21
src/main/java/com/ekexiu/console/system/service/OrgService.java

271
        }
271
        }
272
    }
272
    }
273

273

274
    @Post
275
    @Path("/create")
276
    public String insertOrg(@JdbcConn(true) Connection con, OrganizationInfo info,@Nullable String fn)
277
            throws SQLException,IOException {
278
        String id = StringUtil.buildUUID();
279
        OrgUser orgUser = new OrgUser();
280
        info.setId(id);
281
        orgUser.setId(id);
282
        orgUser.setEmail(info.getEmail());
283
        orgUser.setPasswd(DEFAULT_PW_STR);
284
        orgUser.setInviterId(info.getInviterId());
285
        orgUser.setUserType("1");
286
        if(fn != null){
287
            this.saveOrgLogo(orgUser.getId(), fn);
288
        }
289
        this.orgUserDao.insert(con, orgUser);
290
        this.orgDao.insert(con, info);
291
        return orgUser.getId();
292
    }
293

274

294
    @Path("/entryCheck")
275
    @Path("/entryCheck")
295
    @Get
276
    @Get
474
        org.setId(id);
455
        org.setId(id);
475
        org.setName(orgName);
456
        org.setName(orgName);
476
        org.setIsJoin("0");
457
        org.setIsJoin("0");
477
        org.setOrgType(this.defaultOrgType);
458
        //org.setOrgType(this.defaultOrgType);
478
        org.setAuthStatus(this.defaultAuthStatus);
459
        org.setAuthStatus(this.defaultAuthStatus);
479
        try {
460
        try {
480
            orgDao.insert(con, org);
461
            orgDao.insert(con, org);
520
        public void setName(String name) {
501
        public void setName(String name) {
521
            this.name = name;
502
            this.name = name;
522
        }
503
        }
523

524
    }
504
    }
525

505

526

506