Search in sources :

Example 6 with OrgVo

use of com.ngtesting.platform.vo.OrgVo in project ngtesting-platform by aaronchen2k.

the class OrgServiceImpl method genVo.

@Override
public OrgVo genVo(TestOrg po) {
    if (po == null) {
        return null;
    }
    OrgVo vo = new OrgVo();
    BeanUtilEx.copyProperties(vo, po);
    return vo;
}
Also used : OrgVo(com.ngtesting.platform.vo.OrgVo)

Aggregations

OrgVo (com.ngtesting.platform.vo.OrgVo)6 JSONObject (com.alibaba.fastjson.JSONObject)3 AuthPassport (com.ngtesting.platform.util.AuthPassport)3 UserVo (com.ngtesting.platform.vo.UserVo)3 HashMap (java.util.HashMap)3 RequestMapping (org.springframework.web.bind.annotation.RequestMapping)3 ResponseBody (org.springframework.web.bind.annotation.ResponseBody)3 TestOrg (com.ngtesting.platform.entity.TestOrg)2 TestUser (com.ngtesting.platform.entity.TestUser)2 LinkedList (java.util.LinkedList)2 List (java.util.List)1