代码合并终

This commit is contained in:
2023-02-06 13:33:48 +08:00
parent 51041ad52d
commit abc9af79c4
28 changed files with 951 additions and 104 deletions

View File

@@ -0,0 +1,27 @@
package com.njcn.process.constant;
import com.google.common.collect.Maps;
import com.njcn.device.pq.pojo.po.DataV;
import org.springframework.cglib.beans.BeanMap;
import java.util.Map;
/**
* Description:
* 接口文档访问地址http://serverIP:port/swagger-ui.html
* Date: 2022/12/7 15:18【需求编号】
*
* @author clam
* @version V1.0.0
*/
public class Test {
public static void main(String[] args) {
Map<String, Object> map = Maps.newHashMap ( );
DataV d = new DataV ( );
BeanMap beanMap = BeanMap.create (d);
for (Object key : beanMap.keySet ( )) {
}
}
}