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.
40 lines
881 B
C#
40 lines
881 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 ServiceProjectBaseDto
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public string PKId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务项目代码
|
|
/// </summary>
|
|
public string ServiceProjectCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务项目名称
|
|
/// </summary>
|
|
public string ServiceProjectName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 显示顺序号
|
|
/// </summary>
|
|
public int SortNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 服务项目说明
|
|
/// </summary>
|
|
public string ServiceProjectNote { get; set; }
|
|
}
|
|
}
|