Showing
1 changed file
with
5 additions
and
0 deletions
| ... | @@ -92,6 +92,8 @@ enum ClientLabelTypeEnum { | ... | @@ -92,6 +92,8 @@ enum ClientLabelTypeEnum { |
| 92 | CLIENT_LABEL_TYPE_EFFICACY = 6; // 功效标签 | 92 | CLIENT_LABEL_TYPE_EFFICACY = 6; // 功效标签 |
| 93 | CLIENT_LABEL_TYPE_DOCTOR = 7; // 医嘱标签 | 93 | CLIENT_LABEL_TYPE_DOCTOR = 7; // 医嘱标签 |
| 94 | CLIENT_LABEL_TYPE_AVOID =8; | 94 | CLIENT_LABEL_TYPE_AVOID =8; |
| 95 | + CLIENT_LABEL_TYPE_ALLERGENS =9; // 过敏源 | ||
| 96 | + | ||
| 95 | } | 97 | } |
| 96 | enum ClientDishLabelStatusEnum { | 98 | enum ClientDishLabelStatusEnum { |
| 97 | UNKNOWN_LABEL_STATUS = 0; | 99 | UNKNOWN_LABEL_STATUS = 0; |
| ... | @@ -158,6 +160,9 @@ message QueryClientLabelsByConditionRpcRequest { | ... | @@ -158,6 +160,9 @@ message QueryClientLabelsByConditionRpcRequest { |
| 158 | bool includeDeleted = 10; | 160 | bool includeDeleted = 10; |
| 159 | bool shouldFilterTypes = 11; | 161 | bool shouldFilterTypes = 11; |
| 160 | repeated ClientLabelTypeEnum types = 12; | 162 | repeated ClientLabelTypeEnum types = 12; |
| 163 | + bool shouldFilterCodes = 13; | ||
| 164 | + repeated string codes = 14; | ||
| 165 | + | ||
| 161 | } | 166 | } |
| 162 | 167 | ||
| 163 | message QueryClientLabelsByConditionRpcResponse { | 168 | message QueryClientLabelsByConditionRpcResponse { | ... | ... |
-
Please register or login to post a comment