From fc8c4cab4b6509f3fc6cd8986728e4e541095e12 Mon Sep 17 00:00:00 2001 From: wtp <1813748440@qq.com> Date: Mon, 17 Apr 2023 17:11:48 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=98=AF=E5=90=A6=E5=85=8D?= =?UTF-8?q?=E8=B4=B9=E8=AF=BE=E7=A8=8B=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- GDZZ.Application/Entity/Course.cs | 4 ++++ GDZZ.Application/GDZZ.Application.xml | 10 ++++++++++ GDZZ.Application/Service/Course/Dto/CourseInput.cs | 5 +++++ 3 files changed, 19 insertions(+) diff --git a/GDZZ.Application/Entity/Course.cs b/GDZZ.Application/Entity/Course.cs index ebc4ab0..8f75a92 100644 --- a/GDZZ.Application/Entity/Course.cs +++ b/GDZZ.Application/Entity/Course.cs @@ -35,5 +35,9 @@ namespace GDZZ.Application.Entity /// 标题 /// public string Title { get; set; } + /// + /// 是否免费 + /// + public int IsFree { get; set; } } } \ No newline at end of file diff --git a/GDZZ.Application/GDZZ.Application.xml b/GDZZ.Application/GDZZ.Application.xml index 63001dc..fe94e3c 100644 --- a/GDZZ.Application/GDZZ.Application.xml +++ b/GDZZ.Application/GDZZ.Application.xml @@ -179,6 +179,11 @@ 标题 + + + 是否免费 + + 意见反馈 @@ -1418,6 +1423,11 @@ 标题 + + + 是否免费 + + 主键Id diff --git a/GDZZ.Application/Service/Course/Dto/CourseInput.cs b/GDZZ.Application/Service/Course/Dto/CourseInput.cs index 0010e05..b4321cf 100644 --- a/GDZZ.Application/Service/Course/Dto/CourseInput.cs +++ b/GDZZ.Application/Service/Course/Dto/CourseInput.cs @@ -38,6 +38,11 @@ namespace GDZZ.Application /// 标题 /// public virtual string Title { get; set; } + + /// + /// 是否免费 + /// + public virtual int IsFree { get; set; } }