然后加上Attribute [JsonConverter(typeof(StringEnumConverter))]
例
public class ProcesserCondition
{
[JsonConverter(typeof(StringEnumConverter))]
public DataType DataType { get; set; }
}
public enum DataType
{
Image,
Title,
Ingredients,
Custom
}