using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Myshipping.Application
{
///
/// 服务项目
///
public class ServiceProjectBaseDto
{
///
/// 主键
///
public string PKId { get; set; }
///
/// 服务项目代码
///
public string ServiceProjectCode { get; set; }
///
/// 服务项目名称
///
public string ServiceProjectName { get; set; }
///
/// 显示顺序号
///
public int SortNo { get; set; }
///
/// 服务项目说明
///
public string ServiceProjectNote { get; set; }
}
}