如有以下 json,当 salesPersonId 为 A,B 时,salesPersonOffice 只能取 A1,B1 等 String 类型,当 salesPersonId=C 时,salesPersonOffice 也只能为 null.
知道有一个 dependencies 属性,但是尝试了几次都不行,不知道具体应该怎么写。
[
{
"salesPersonId": "A",
"salesPersonOffice": "A1"
},
{
"salesPersonId": "B",
"salesPersonOffice": "B1"
},
{
"salesPersonId": "C",
"salesPersonOffice": null
}
]