namespace FoodLabeling.Application.Contracts.Dtos.Location;
///
/// 新增门店入参
///
public class LocationCreateInputVo
{
public string? Partner { get; set; }
public string? GroupName { get; set; }
///
/// Location ID(业务编码)
///
public string LocationCode { get; set; } = string.Empty;
public string LocationName { get; set; } = string.Empty;
public string? Street { get; set; }
public string? City { get; set; }
public string? StateCode { get; set; }
public string? Country { get; set; }
public string? ZipCode { get; set; }
public string? Phone { get; set; }
public string? Email { get; set; }
public decimal? Latitude { get; set; }
public decimal? Longitude { get; set; }
///
/// 经营时间(自由文本)
///
public string? OperatingHours { get; set; }
public bool State { get; set; } = true;
}