using System; namespace GDZZ.Application { /// /// 套餐管理输出参数 /// public class MiniThaliOutput { /// /// 主键Id /// public long Id { get; set; } /// /// 套餐金额 /// public decimal Amount { get; set; } /// /// 套餐名称 /// public string Name { get; set; } } }