using System; namespace GDZZ.Application { /// /// 业务配置输出参数 /// public class ServiceConfigOutput { /// /// 主键Id /// public long Id { get; set; } /// /// 配置名称 /// public string Name { get; set; } /// /// 配置值 /// public string Value { get; set; } } }