广汽安道拓Acura项目MES后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
278 B

  1. // Copyright (c) Shenyang Leading Edge Intelligent Technology Co., Ltd. All rights reserved.
  2. package rpc
  3. func keepValue(parameterValue interface{}, _ string) (interface{}, error) {
  4. return parameterValue, nil
  5. }
  6. type valueParser func(interface{}, string) (interface{}, error)