You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
524 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
/// <summary>
/// 内嵌服务项目请求
/// </summary>
public class EmbedServiceProjectDto
{
/// <summary>
/// 业务主键
/// </summary>
public string businessId { get; set; }
/// <summary>
/// 服务项目代码
/// </summary>
public string[] ProjectCodes { get; set; }
}
}