919c1b6a
李曜臣
1
|
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
[JsonPropertyName("x")]
public decimal PosX { get; set; }
[JsonPropertyName("y")]
public decimal PosY { get; set; }
[JsonPropertyName("width")]
public decimal Width { get; set; }
[JsonPropertyName("height")]
public decimal Height { get; set; }
[JsonPropertyName("rotation")]
public string Rotation { get; set; } = "horizontal";
[JsonPropertyName("border")]
public string BorderType { get; set; } = "none";
[JsonPropertyName("zIndex")]
public int ZIndex { get; set; }
[JsonPropertyName("orderNum")]
public int OrderNum { get; set; }
/// <summary>
/// 值来源:FIXED / AUTO_DB / PRINT_INPUT
/// </summary>
[JsonPropertyName("valueSourceType")]
public string ValueSourceType { get; set; } = "FIXED";
[JsonPropertyName("bindingExpr")]
public string? BindingExpr { get; set; }
[JsonPropertyName("autoQueryKey")]
public string? AutoQueryKey { get; set; }
[JsonPropertyName("inputKey")]
public string? InputKey { get; set; }
[JsonPropertyName("isRequiredInput")]
public bool IsRequiredInput { get; set; }
/// <summary>
/// 元素配置
/// </summary>
[JsonPropertyName("config")]
public object? ConfigJson { get; set; }
}
|