59e51671
“wangming”
1
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
namespace FoodLabeling.Application.Contracts.Dtos.Label;
public class LabelUpdateInputVo
{
public string LabelName { get; set; } = string.Empty;
public string TemplateCode { get; set; } = string.Empty;
public string? PartnerId { get; set; }
public List<string>? PartnerIds { get; set; }
public List<string>? RegionIds { get; set; }
public List<string>? GroupIds { get; set; }
public string? LocationId { get; set; }
public List<string>? LocationIds { get; set; }
public string LabelCategoryId { get; set; } = string.Empty;
public string LabelTypeId { get; set; } = string.Empty;
public List<string> ProductIds { get; set; } = new();
public object? LabelInfoJson { get; set; }
public bool State { get; set; } = true;
}
|