namespace Myshipping.Core.Service; /// /// 系统应用参数 /// public class AppOutput { /// /// 应用Id /// public long Id { get; set; } /// /// 名称 /// public string Name { get; set; } /// /// 编码 /// public string Code { get; set; } /// /// 是否默认 /// public string Active { get; set; } /// /// 排序 /// public int Sort { get; set; } }