|
1、登录云星空管理员账号,在webapi使用元数据查询,查询需要映射的字段,每个下拉值对应的value值
"Extends":[{"Value":"A","Caption":"否","Seq":1,"Invalid":false},{"Value":"B","Caption":"是","Seq":2,"Invalid":false}],"
2、caption,是云星空前端显示的值,value,是实际需要传递的值
3、结合crm传值,组合casewhen SQL例如:
select case ?
when '是' then 'A'
when '否' then 'B'
else 'B'
end
|
|