@@ -8,6 +8,20 @@ namespace ZhonTai.Admin.Services.DiTuiAPI.Dto
{
public class ProjectDescOutput
+ public ProjectDescOutput()
+ {
+
+ }
+ public ProjectDescOutput(long id, string logo, string name,string price, string settleDay, string description)
+ Id = id;
+ Logo = logo;
+ Name = name;
+ Price = price;
+ SettleDay = settleDay;
+ Description = description;
/// <summary>
/// ID
/// </summary>
@@ -9,6 +9,18 @@ namespace ZhonTai.Admin.Services.DiTuiAPI.Dto
public class ProjectSpecOutput
+ public ProjectSpecOutput()
+ public ProjectSpecOutput(long id, string videoUrl,string detail)
+ VideoUrl = videoUrl;
+ Detail = detail;
+ public long Id { get; set; }
public string VideoUrl { get; set; }
public List<ProjectPrice> Prices { get; set; }
public string Detail { get; set; }