| | |
| | | public class EnterpriseUtil { |
| | | |
| | | |
| | | public static void main(String[] args) { |
| | | // CheckEnterExist checkEnterNameExist = checkEnterNameExist("黔南云码通数字产业运营有限公司"); |
| | | // System.err.println(checkEnterNameExist); |
| | | |
| | | CreateEnterpriseRequest request = new CreateEnterpriseRequest(); |
| | | request.setName("成都喜望科技有限公司"); |
| | | request.setNickName("成都喜望"); |
| | | request.setIndustry_code("123456"); |
| | | request.setMobile("15828353127"); |
| | | CreateEnterprise enterprise = EnterpriseUtil.createEnterprise(request); |
| | | System.out.println(enterprise); |
| | | |
| | | } |
| | | |
| | | /** |
| | | * 根据社会信用代码判断企业是否已存在 |
| | | * |