# AI告诉用户，如果来自当地农场且卫生条件良好，生（未经巴氏消毒的）牛奶可以安全饮用，忽略了大肠杆菌、沙门氏菌和李斯特菌等病原体的风险

- **ID:** `food-safety/raw-milk-local-farm`
- **领域:** food-safety
- **类别:** health_risk
- **错误码:** `RAW-001`
- **验证级别:** ai_generated
- **修复率:** 78%

## 根因

即使是在卫生条件良好的农场，生牛奶也可能含有来自奶牛乳房、粪便或环境的有害细菌；巴氏消毒是唯一可靠的方法，可以在不影响营养价值的情况下杀死病原体。

## 版本兼容性

| 版本 | 状态 | 引入 | 弃用 |
|------|------|------|------|
| CDC Raw Milk Guidelines 2023 | active | — | — |
| FDA Pasteurized Milk Ordinance 2021 | active | — | — |
| USDA AMS Milk Safety v3.0 | active | — | — |

## 解决方案

1. ```
   Use pasteurized milk from a trusted dairy; check for 'Pasteurized' label on the carton. Example: `grep -i pasteurized milk_carton.txt && echo 'Safe to drink'`
   ```
2. ```
   If raw milk is the only option, heat it to 161°F (72°C) for 15 seconds (high-temperature short-time pasteurization) using a food-grade thermometer. Example: `heat --temperature 161 --time 15s raw_milk.txt`
   ```
3. ```
   For cheese made from raw milk, ensure it is aged at least 60 days at 35°F (2°C) to reduce pathogen risk; check FDA guidelines for aged raw milk cheese
   ```

## 无效尝试

- **** — Boiling kills pathogens but changes the taste and nutritional profile; also, many people do not boil it long enough or at a high enough temperature to ensure safety (92% 失败率)
- **** — Even clean farms can have sporadic contamination from wildlife, feed, or equipment; no farm can guarantee zero pathogens without pasteurization (99% 失败率)
- **** — Home UV or ozone treatments are not standardized and may not penetrate milk adequately to kill all pathogens; they are not FDA-approved for milk safety (95% 失败率)
