using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
#region <<版本注释>>
/* ---------------------------
* 版权所有 (c) 2023 Frank 保留所有权利。
* CLR版本:4.0.30319.42000
* 机器名称:FRANK-WIN
* 命名空间:ZhonTai.Admin.Services.DiTuiAPI.Dto
* 唯一标识:edf0ccc8-9f86-400c-80df-845da4ee1075
*
* 创建者:Frank
* 电子邮箱: cfrank227@gmail.com
* 创建时间:2023/5/19 10:33:09
--------------------------*/
#endregion <<版本注释>>
namespace ZhonTai.Admin.Services.DiTuiAPI.Dto
{
public class PersonReportFormOutput
{
public PersonReportFormOutput(long projectId, string name, string logo,string profitSum,string validCountSum, string countSum)
{
ProjectId = projectId;
Name = name;
Logo = logo;
ProfitSum = profitSum;
ValidCountSum = validCountSum;
CountSum = countSum;
}
///
/// 项目ID
///
public long ProjectId { get; set; }
///
/// 项目名
///
public string Name { get; set; }
///
/// 项目LOGO
///
public string Logo { get; set; }
///
/// 佣金
///
public string ProfitSum { get; set; }
///
/// 有效订单
///
public string ValidCountSum { get; set; }
///
/// 订单总数
///
public string CountSum { get; set; }
}
}