json.net 序列化组件 Newtonsoft.Json 如果有不需要序列化的字段,可以给该字段添加[JsonIgnore]标记

[JsonIgnore]
    public string Master { get; set; }
原文地址:https://www.cnblogs.com/joeylee/p/3072899.html