电脑知识|欧美黑人一区二区三区|软件|欧美黑人一级爽快片淫片高清|系统|欧美黑人狂野猛交老妇|数据库|服务器|编程开发|网络运营|知识问答|技术教程文章 - 好吧啦网

您的位置:首頁技術(shù)文章
文章詳情頁

java實(shí)現(xiàn)相同屬性名稱及相似類型的pojo、dto、vo等互轉(zhuǎn)操作

瀏覽:82日期:2022-08-26 14:41:34

已應(yīng)用于實(shí)際項(xiàng)目:

1.thrift對象與dto之間的互轉(zhuǎn)

2.pojo與dto之間的互轉(zhuǎn)

3.pojo與vo之間的互轉(zhuǎn)

1.核心轉(zhuǎn)換工具類,對特別復(fù)雜類型不做處理,因?yàn)闃I(yè)務(wù)場景還未覆蓋

package littlehow.convert; import org.slf4j.Logger;import org.slf4j.LoggerFactory; import java.lang.reflect.Field;import java.lang.reflect.Method;import java.lang.reflect.ParameterizedType;import java.lang.reflect.Type;import java.math.BigDecimal;import java.sql.Timestamp;import java.util.*;import java.util.concurrent.ConcurrentHashMap; /** * PojoConvertUtil * * @author littlehow * @time 2017-05-03 16:54 */public class PojoConvertUtil { private static Logger logger = LoggerFactory.getLogger(PojoConvertUtil.class); /** * 變量緩存 */ private static final Map<String, Map<String, Field>> cacheFields = new ConcurrentHashMap<>(); private static final Set<Class> basicClass = new HashSet<>(); static { basicClass.add(Integer.class); basicClass.add(Character.class); basicClass.add(Byte.class); basicClass.add(Float.class); basicClass.add(Double.class); basicClass.add(Boolean.class); basicClass.add(Long.class); basicClass.add(Short.class); basicClass.add(String.class); basicClass.add(BigDecimal.class); } /** * 將具有相同屬性的類型進(jìn)行轉(zhuǎn)換 * @param orig * @param <T> * @return */ public static <T> T convertPojo(Object orig, Class<T> targetClass) { try { T target = targetClass.newInstance(); /** 獲取源對象的所有變量 */ Field[] fields = orig.getClass().getDeclaredFields(); for (Field field : fields) {if (isStatic(field)) continue;/** 獲取目標(biāo)方法 */Field targetField = getTargetField(targetClass, field.getName());if (targetField == null) continue;Object value = getFiledValue(field, orig);if (value == null) continue;Class type1 = field.getType();Class type2 = targetField.getType();//兩個類型是否相同boolean sameType = type1.equals(type2);if (isBasicType(type1)) { if (sameType) setFieldValue(targetField, target, value);} else if (value instanceof Map && Map.class.isAssignableFrom(type2)){//對map setMap((Map)value, field, targetField, target);} else if (value instanceof Set && Set.class.isAssignableFrom(type2)) {//對set setCollection((Collection)value, field, targetField, target);} else if (value instanceof List && List.class.isAssignableFrom(type2)) {//對list setCollection((Collection)value, field, targetField, target);} else if (value instanceof Enum && Enum.class.isAssignableFrom(type2)) {//對enum setEnum((Enum)value, field, targetField, target);} else if (value instanceof java.util.Date && java.util.Date.class.isAssignableFrom(type2)) {//對日期類型,不處理如joda包之類的擴(kuò)展時(shí)間,不處理calendar setDate((Date)value, targetField, type2, target, sameType);} } return target; } catch (Throwable t) { logger.error('轉(zhuǎn)換失敗:' + t.getMessage()); throw new RuntimeException(t.getMessage()); } } /** * 獲取字段值 * @param field * @param obj * @return */ private static Object getFiledValue(Field field, Object obj) throws IllegalAccessException { //獲取原有的訪問權(quán)限 boolean access = field.isAccessible(); try { //設(shè)置可訪問的權(quán)限 field.setAccessible(true); return field.get(obj); } finally { //恢復(fù)訪問權(quán)限 field.setAccessible(access); } } /** * 設(shè)置方法值 * @param field * @param obj * @param value * @throws IllegalAccessException */ private static void setFieldValue(Field field, Object obj, Object value) throws IllegalAccessException { //獲取原有的訪問權(quán)限 boolean access = field.isAccessible(); try { //設(shè)置可訪問的權(quán)限 field.setAccessible(true); field.set(obj, value); } finally { //恢復(fù)訪問權(quán)限 field.setAccessible(access); } } /** * 轉(zhuǎn)換list * @param orig * @param targetClass * @param <T> * @return */ public static <T> List<T> convertPojos(List orig, Class<T> targetClass) { List<T> list = new ArrayList<>(orig.size()); for (Object object : orig) { list.add(convertPojo(object, targetClass)); } return list; } /** * 設(shè)置Map * @param value * @param origField * @param targetField * @param targetObject * @param <T> */ private static <T> void setMap(Map value, Field origField, Field targetField, T targetObject) throws IllegalAccessException, InstantiationException{ Type origType = origField.getGenericType(); Type targetType = targetField.getGenericType(); if (origType instanceof ParameterizedType && targetType instanceof ParameterizedType) {//泛型類型 ParameterizedType origParameterizedType = (ParameterizedType)origType; Type[] origTypes = origParameterizedType.getActualTypeArguments(); ParameterizedType targetParameterizedType = (ParameterizedType)targetType; Type[] targetTypes = targetParameterizedType.getActualTypeArguments(); if (origTypes != null && origTypes.length == 2 && targetTypes != null && targetTypes.length == 2) {//正常泛型,查看第二個泛型是否不為基本類型Class clazz = (Class)origTypes[1];if (!isBasicType(clazz) && !clazz.equals(targetTypes[1])) {//如果不是基本類型并且泛型不一致,則需要繼續(xù)轉(zhuǎn)換 Set<Map.Entry> entries = value.entrySet(); Map targetMap = value.getClass().newInstance(); for (Map.Entry entry : entries) { targetMap.put(entry.getKey(), convertPojo(entry.getValue(), (Class) targetTypes[1])); } setFieldValue(targetField, targetObject, targetMap); return;} } } setFieldValue(targetField, targetObject, value); } /** * 設(shè)置集合 * @param value * @param origField * @param targetField * @param targetObject * @param <T> * @throws IllegalAccessException * @throws InstantiationException */ private static <T> void setCollection(Collection value, Field origField, Field targetField, T targetObject) throws IllegalAccessException, InstantiationException{ Type origType = origField.getGenericType(); Type targetType = targetField.getGenericType(); if (origType instanceof ParameterizedType && targetType instanceof ParameterizedType) {//泛型類型 ParameterizedType origParameterizedType = (ParameterizedType)origType; Type[] origTypes = origParameterizedType.getActualTypeArguments(); ParameterizedType targetParameterizedType = (ParameterizedType)targetType; Type[] targetTypes = targetParameterizedType.getActualTypeArguments(); if (origTypes != null && origTypes.length == 1 && targetTypes != null && targetTypes.length == 1) {//正常泛型,查看第二個泛型是否不為基本類型Class clazz = (Class)origTypes[0];if (!isBasicType(clazz) && !clazz.equals(targetTypes[0])) {//如果不是基本類型并且泛型不一致,則需要繼續(xù)轉(zhuǎn)換 Collection collection = value.getClass().newInstance(); for (Object obj : value) { collection.add(convertPojo(obj, (Class) targetTypes[0])); } setFieldValue(targetField, targetObject, collection); return;} } } setFieldValue(targetField, targetObject, value); } /** * 設(shè)置枚舉類型 * @param value * @param origField * @param targetField * @param targetObject * @param <T> */ private static <T> void setEnum(Enum value, Field origField, Field targetField, T targetObject) throws Exception{ if (origField.equals(targetField)) { setFieldValue(targetField, targetObject, value); } else { //枚舉類型都具有一個static修飾的valueOf方法 Method method = targetField.getType().getMethod('valueOf', String.class); setFieldValue(targetField, targetObject, method.invoke(null, value.toString())); } } /** * 設(shè)置日期類型 * @param value * @param targetField * @param targetFieldType * @param targetObject * @param <T> */ private static <T> void setDate(Date value, Field targetField, Class targetFieldType, T targetObject, boolean sameType) throws IllegalAccessException { Date date = null; if (sameType) { date = value; } else if (targetFieldType.equals(java.sql.Date.class)) { date = new java.sql.Date(value.getTime()); } else if (targetFieldType.equals(java.util.Date.class)) { date = new Date(value.getTime()); } else if (targetFieldType.equals(java.sql.Timestamp.class)) { date = new java.sql.Timestamp(value.getTime()); } setFieldValue(targetField, targetObject, date); } /** * 獲取適配方法 * @param clazz * @param fieldName * @return */ public static Field getTargetField(Class clazz, String fieldName) { String classKey = clazz.getName(); Map<String, Field> fieldMap = cacheFields.get(classKey); if (fieldMap == null) { fieldMap = new HashMap<>(); Field[] fields = clazz.getDeclaredFields(); for (Field field : fields) {if (isStatic(field)) continue;fieldMap.put(field.getName(), field); } cacheFields.put(classKey, fieldMap); } return fieldMap.get(fieldName); } /** * 確實(shí)是否為基礎(chǔ)類型 * @param clazz * @return */ public static boolean isBasicType(Class clazz) { return clazz.isPrimitive() || basicClass.contains(clazz); } /** * 判斷變量是否有靜態(tài)修飾符static * @param field * @return */ public static boolean isStatic(Field field) { return (8 & field.getModifiers()) == 8; }}

下面這個類是便于輸出展示的,因?yàn)橹皇怯糜诖蛴。圆蛔鲂士紤]

package littlehow.convert; import java.lang.reflect.Field;import java.text.DateFormat;import java.text.SimpleDateFormat;import java.util.Date; /** * SimpleToStringParent * * @author littlehow * @time 2017-05-04 10:40 */public class SimpleToStringParent { @Override public String toString() { try { StringBuilder stringBuilder = new StringBuilder('{'); Field[] fields = this.getClass().getDeclaredFields(); DateFormat dateFormat = new SimpleDateFormat('yyyy-MM-dd HH:mm:ss'); for (Field field : fields) {Object value = getFiledValue(field, this);if (value == null) continue;if (value instanceof Date) { //這里也可以直接轉(zhuǎn)為時(shí)間戳 value = dateFormat.format((Date)value);}stringBuilder.append(field.getName()).append('=').append(value).append(','); } String returnValue = stringBuilder.toString(); if (returnValue.length() > 1) {returnValue = returnValue.substring(0, returnValue.length() - 1); } return this.getClass().getSimpleName() + returnValue + '}'; } catch (Exception e) { // skip } return this.getClass().getSimpleName() + '{}'; } /** * 獲取屬性值 * @param field * @param obj * @return * @throws IllegalAccessException */ private Object getFiledValue(Field field, Object obj) throws IllegalAccessException { //獲取原有的訪問權(quán)限 boolean access = field.isAccessible(); try { //設(shè)置可訪問的權(quán)限 field.setAccessible(true); return field.get(obj); } finally { //恢復(fù)訪問權(quán)限 field.setAccessible(access); } }}

測試用的4個pojo

1.產(chǎn)品類

package littlehow.convert.pojo; import littlehow.convert.SimpleToStringParent; import java.util.List; /** * Product * * @author littlehow * @time 2017-05-04 09:15 */public class Product extends SimpleToStringParent { private Integer productId; private String generalName; private String factoryName; private String unit; private String specification; private Integer category; private List<Item> items; public Integer getProductId() { return productId; } public void setProductId(Integer productId) { this.productId = productId; } public String getGeneralName() { return generalName; } public void setGeneralName(String generalName) { this.generalName = generalName; } public String getFactoryName() { return factoryName; } public void setFactoryName(String factoryName) { this.factoryName = factoryName; } public String getUnit() { return unit; } public void setUnit(String unit) { this.unit = unit; } public String getSpecification() { return specification; } public void setSpecification(String specification) { this.specification = specification; } public List<Item> getItems() { return items; } public void setItems(List<Item> items) { this.items = items; } public Integer getCategory() { return category; } public void setCategory(Integer category) { this.category = category; }}

2.商品類

package littlehow.convert.pojo; import littlehow.convert.SimpleToStringParent; import java.util.Date;import java.util.List; /** * Item * * @author littlehow * @time 2017-05-04 09:15 */public class Item extends SimpleToStringParent { private Long itemId; private String itemName; private Byte status; private Boolean deleted; private Date createTime; private List<Sku> skus; public Long getItemId() { return itemId; } public void setItemId(Long itemId) { this.itemId = itemId; } public String getItemName() { return itemName; } public void setItemName(String itemName) { this.itemName = itemName; } public Byte getStatus() { return status; } public void setStatus(Byte status) { this.status = status; } public Boolean getDeleted() { return deleted; } public void setDeleted(Boolean deleted) { this.deleted = deleted; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public List<Sku> getSkus() { return skus; } public void setSkus(List<Sku> skus) { this.skus = skus; }}

3.最小庫存單位sku

package littlehow.convert.pojo; import littlehow.convert.SimpleToStringParent; import java.lang.reflect.Field; /** * Sku * * @author littlehow * @time 2017-05-04 09:15 */public class Sku extends SimpleToStringParent { private Long skuId; private Byte status; private Boolean deleted; private Double price; private Double promoPrice; private Integer inventory; private Integer minBuy; private Integer blockInventory; private Color skuColor; public Long getSkuId() { return skuId; } public void setSkuId(Long skuId) { this.skuId = skuId; } public Byte getStatus() { return status; } public void setStatus(Byte status) { this.status = status; } public Boolean getDeleted() { return deleted; } public void setDeleted(Boolean deleted) { this.deleted = deleted; } public Double getPrice() { return price; } public void setPrice(Double price) { this.price = price; } public Double getPromoPrice() { return promoPrice; } public void setPromoPrice(Double promoPrice) { this.promoPrice = promoPrice; } public Integer getInventory() { return inventory; } public void setInventory(Integer inventory) { this.inventory = inventory; } public Integer getMinBuy() { return minBuy; } public void setMinBuy(Integer minBuy) { this.minBuy = minBuy; } public Integer getBlockInventory() { return blockInventory; } public void setBlockInventory(Integer blockInventory) { this.blockInventory = blockInventory; } public Color getSkuColor() { return skuColor; } public void setSkuColor(Color skuColor) { this.skuColor = skuColor; }}

4.屬性枚舉

package littlehow.convert.pojo; /** * Color * * @author littlehow * @time 2017-05-04 09:21 */public enum Color { BLACK(1), RED(2), BLUE(3), GREEN(4); public final int value; Color(int value) { this.value = value; } public static Color valueOf(int value) { switch (value) { case 1 : return BLACK; case 2 : return RED; case 3 : return BLUE; case 4 : return GREEN; default : throw new IllegalArgumentException(value + ' is not a enum value'); } }}

轉(zhuǎn)換用的dto,當(dāng)然也可以將dto作為轉(zhuǎn)換源

1.產(chǎn)品dto

package littlehow.convert.dto; import littlehow.convert.SimpleToStringParent;import littlehow.convert.pojo.Item; import java.util.List; /** * ProductDto * * @author littlehow * @time 2017-05-04 09:16 */public class ProductDto extends SimpleToStringParent { private Integer productId; private String generalName; private String factoryName; private String unit; private String specification; private Integer category; private List<ItemDto> items; public Integer getProductId() { return productId; } public void setProductId(Integer productId) { this.productId = productId; } public String getGeneralName() { return generalName; } public void setGeneralName(String generalName) { this.generalName = generalName; } public String getFactoryName() { return factoryName; } public void setFactoryName(String factoryName) { this.factoryName = factoryName; } public String getUnit() { return unit; } public void setUnit(String unit) { this.unit = unit; } public String getSpecification() { return specification; } public void setSpecification(String specification) { this.specification = specification; } public List<ItemDto> getItems() { return items; } public void setItems(List<ItemDto> items) { this.items = items; } public Integer getCategory() { return category; } public void setCategory(Integer category) { this.category = category; }}

2.商品dto

package littlehow.convert.dto; import littlehow.convert.SimpleToStringParent;import littlehow.convert.pojo.Sku; import java.util.Date;import java.util.List; /** * ItemDto * * @author littlehow * @time 2017-05-04 09:16 */public class ItemDto extends SimpleToStringParent { private Integer itemId; private String itemName; private Byte status; private Boolean deleted; private Date createTime; private List<SkuDto> skus; public Integer getItemId() { return itemId; } public void setItemId(Integer itemId) { this.itemId = itemId; } public String getItemName() { return itemName; } public void setItemName(String itemName) { this.itemName = itemName; } public Byte getStatus() { return status; } public void setStatus(Byte status) { this.status = status; } public Boolean getDeleted() { return deleted; } public void setDeleted(Boolean deleted) { this.deleted = deleted; } public Date getCreateTime() { return createTime; } public void setCreateTime(Date createTime) { this.createTime = createTime; } public List<SkuDto> getSkus() { return skus; } public void setSkus(List<SkuDto> skus) { this.skus = skus; }}

3.skudto

package littlehow.convert.dto; import littlehow.convert.SimpleToStringParent;import littlehow.convert.pojo.Color; /** * SkuDto * * @author littlehow * @time 2017-05-04 09:16 */public class SkuDto extends SimpleToStringParent { private Long skuId; private Byte status; private Boolean deleted; private Double price; private Double promoPrice; private Integer inventory; private Integer minBuy; private Integer blockInventory; private ColorDto skuColor; public Long getSkuId() { return skuId; } public void setSkuId(Long skuId) { this.skuId = skuId; } public Byte getStatus() { return status; } public void setStatus(Byte status) { this.status = status; } public Boolean getDeleted() { return deleted; } public void setDeleted(Boolean deleted) { this.deleted = deleted; } public Double getPrice() { return price; } public void setPrice(Double price) { this.price = price; } public Double getPromoPrice() { return promoPrice; } public void setPromoPrice(Double promoPrice) { this.promoPrice = promoPrice; } public Integer getInventory() { return inventory; } public void setInventory(Integer inventory) { this.inventory = inventory; } public Integer getMinBuy() { return minBuy; } public void setMinBuy(Integer minBuy) { this.minBuy = minBuy; } public Integer getBlockInventory() { return blockInventory; } public void setBlockInventory(Integer blockInventory) { this.blockInventory = blockInventory; } public ColorDto getSkuColor() { return skuColor; } public void setSkuColor(ColorDto skuColor) { this.skuColor = skuColor; }}

4.顏色屬性

package littlehow.convert.dto; /** * ColorDto * * @author littlehow * @time 2017-05-04 09:21 */public enum ColorDto { BLACK(1), RED(2), BLUE(3), GREEN(4); public final int value; ColorDto(int value) { this.value = value; } public static ColorDto valueOf(int value) { switch (value) { case 1 : return BLACK; case 2 : return RED; case 3 : return BLUE; case 4 : return GREEN; default : throw new IllegalArgumentException(value + ' is not a enum value'); } }}

測試類,簡單的做了一下輸出查看

package littlehow.convert.test; import littlehow.convert.PojoConvertUtil;import littlehow.convert.dto.ItemDto;import littlehow.convert.dto.ProductDto;import littlehow.convert.dto.SkuDto;import littlehow.convert.pojo.Color;import littlehow.convert.pojo.Item;import littlehow.convert.pojo.Product;import littlehow.convert.pojo.Sku;import org.junit.Before;import org.junit.Test; import java.util.ArrayList;import java.util.Date;import java.util.List; /** * TransTest * * @author littlehow * @time 2017-05-04 10:44 */public class TransTest { private Product product; @Before public void init() { product = new Product(); product.setCategory(123); product.setFactoryName('littlehow’s shop'); product.setGeneralName('littlehow’s product'); product.setProductId(1); product.setSpecification('16*2u'); product.setUnit('box'); List<Item> items = new ArrayList<>(); for (int i=1; i<=5; i++) { Item item = new Item(); item.setCreateTime(new Date()); item.setDeleted(i % 3 == 0); item.setItemId((long) i); item.setItemName('littlehow’s ' + i + 'th item'); item.setStatus((byte) (i % 4)); List<Sku> skus = new ArrayList<>(); for (int j=1; j<=i; j++) {Sku sku = new Sku();sku.setSkuId((long)(j * (i + 5) * 3));sku.setStatus((byte) 1);sku.setDeleted(false);sku.setBlockInventory(5);sku.setInventory(j * 100);sku.setMinBuy(j * 5);sku.setPrice(Double.valueOf(j * 103));sku.setPromoPrice(Double.valueOf(j * 101));sku.setSkuColor(Color.valueOf(j % 4 + 1));skus.add(sku); } item.setSkus(skus); items.add(item); } product.setItems(items); } @Test public void test() { System.out.println(product);//正常輸出 System.out.println('========================'); ProductDto productDto = PojoConvertUtil.convertPojo(product, ProductDto.class); System.out.println(productDto);//正常輸出,證明轉(zhuǎn)換正常 System.out.println('========================='); List<Item> items = product.getItems(); List<ItemDto> itemDtos = PojoConvertUtil.convertPojos(items, ItemDto.class); System.out.println(itemDtos);//正常輸出,數(shù)組轉(zhuǎn)換成功 } @Test public void test1() { Sku sku = product.getItems().get(0).getSkus().get(0); System.out.println(sku);//正常輸出 System.out.println('========================='); SkuDto skuDto = PojoConvertUtil.convertPojo(sku, SkuDto.class); System.out.println(skuDto); }}

能快速完成基礎(chǔ)類之間的互轉(zhuǎn)

以上這篇java實(shí)現(xiàn)相同屬性名稱及相似類型的pojo、dto、vo等互轉(zhuǎn)操作就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Java
相關(guān)文章:
主站蜘蛛池模板: 不锈钢散热器,冷却翅片管散热器厂家-无锡市烨晟化工装备科技有限公司 | 旋片真空泵_真空泵_水环真空泵_真空机组-深圳恒才机电设备有限公司 | 玉米深加工设备|玉米加工机械|玉米加工设备|玉米深加工机械-河南成立粮油机械有限公司 | 信阳网站建设专家-信阳时代网联-【信阳网站建设百度推广优质服务提供商】信阳网站建设|信阳网络公司|信阳网络营销推广 | 电杆荷载挠度测试仪-电杆荷载位移-管桩测试仪-北京绿野创能机电设备有限公司 | 篮球地板厂家_舞台木地板品牌_体育运动地板厂家_凯洁地板 | 宝元数控系统|对刀仪厂家|东莞机器人控制系统|东莞安川伺服-【鑫天驰智能科技】 | 成都治疗尖锐湿疣比较好的医院-成都治疗尖锐湿疣那家医院好-成都西南皮肤病医院 | 哲力实业_专注汽车涂料汽车漆研发生产_汽车漆|修补油漆品牌厂家 长沙一级消防工程公司_智能化弱电_机电安装_亮化工程专业施工承包_湖南公共安全工程有限公司 | 代做标书-代写标书-专业标书文件编辑-「深圳卓越创兴公司」 | 上海小程序开发-上海小程序制作公司-上海网站建设-公众号开发运营-软件外包公司-咏熠科技 | 技德应用| 【法利莱住人集装箱厂家】—活动集装箱房,集装箱租赁_大品牌,更放心 | 上海瑶恒实业有限公司|消防泵泵|离心泵|官网 | 高扬程排污泵_隔膜泵_磁力泵_节能自吸离心水泵厂家-【上海博洋】 | 陕西自考报名_陕西自学考试网 | 冷油器-冷油器换管改造-连云港灵动列管式冷油器生产厂家 | 凝胶成像仪,化学发光凝胶成像系统,凝胶成像分析系统-上海培清科技有限公司 | 南京PVC快速门厂家南京快速卷帘门_南京pvc快速门_世界500强企业国内供应商_南京美高门业 | 商标转让-购买商标专业|放心的商标交易网-蜀易标商标网 | 除湿机|工业除湿机|抽湿器|大型地下室车间仓库吊顶防爆除湿机|抽湿烘干房|新风除湿机|调温/降温除湿机|恒温恒湿机|加湿机-杭州川田电器有限公司 | 大型冰雕-景区冰雕展制作公司,3D创意设计源头厂家-[赛北冰雕] | 新密高铝耐火砖,轻质保温砖价格,浇注料厂家直销-郑州荣盛窑炉耐火材料有限公司 | 高铝砖-高铝耐火球-高铝耐火砖生产厂家-价格【荣盛耐材】 | 智慧水务|智慧供排水利信息化|水厂软硬件系统-上海敢创 | SEO网站优化,关键词排名优化,苏州网站推广-江苏森歌网络 | 隔爆型防爆端子分线箱_防爆空气开关箱|依客思| 日本SMC气缸接头-速度控制阀-日本三菱伺服电机-苏州禾力自动化科技有限公司 | 一体化预制泵站-一体化提升泵站-一体化泵站厂家-山东康威环保 | 玻璃钢型材-玻璃钢风管-玻璃钢管道,生产厂家-[江苏欧升玻璃钢制造有限公司] | 齿轮减速机电机一体机_齿轮减速箱加电机一体化-德国BOSERL蜗轮蜗杆减速机电机生产厂家 | 沈阳庭院景观设计_私家花园_别墅庭院设计_阳台楼顶花园设计施工公司-【沈阳现代时园艺景观工程有限公司】 | 钢衬四氟管道_钢衬四氟直管_聚四氟乙烯衬里管件_聚四氟乙烯衬里管道-沧州汇霖管道科技有限公司 | 蜘蛛车-登高车-高空作业平台-高空作业车-曲臂剪叉式升降机租赁-重庆海克斯公司 | CCE素质教育博览会 | CCE素博会 | 教育展 | 美育展 | 科教展 | 素质教育展 | 品牌策划-品牌设计-济南之式传媒广告有限公司官网-提供品牌整合丨影视创意丨公关活动丨数字营销丨自媒体运营丨数字营销 | 筛分机|振动筛分机|气流筛分机|筛分机厂家-新乡市大汉振动机械有限公司 | 散热器-电子散热器-型材散热器-电源散热片-镇江新区宏图电子散热片厂家 | 精密机械零件加工_CNC加工_精密加工_数控车床加工_精密机械加工_机械零部件加工厂 | 杭州货架订做_组合货架公司_货位式货架_贯通式_重型仓储_工厂货架_货架销售厂家_杭州永诚货架有限公司 | 智慧农业|农业物联网|现代农业物联网-托普云农物联网官方网站 |