namespace FoodLabeling.Application.Contracts.Dtos.Partner; /// /// 合作伙伴地址字段(与 location 门店地址命名对齐) /// public class PartnerAddressFieldsDto { public string? Street { get; set; } public string? City { get; set; } /// /// 州/省代码(如 NY)。JSON 字段名为 stateCode,与启用状态 state(boolean)不同。 /// public string? StateCode { get; set; } public string? Country { get; set; } public string? ZipCode { get; set; } }