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.
|
|
|
|
using Furion.DistributedIDGenerator;
|
|
|
|
|
using MathNet.Numerics;
|
|
|
|
|
using Myshipping.Application.Entity.TrackingSystem;
|
|
|
|
|
using RabbitMQ.Client;
|
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Myshipping.Application.Entity
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 服务项目主表
|
|
|
|
|
/// </summary>
|
|
|
|
|
[SugarTable("service_project_base")]
|
|
|
|
|
[Description("服务项目主表")]
|
|
|
|
|
public class ServiceProjectBaseInfo : TrackingSystemDbEntity
|
|
|
|
|
{
|
|
|
|
|
public ServiceProjectBaseInfo()
|
|
|
|
|
{
|
|
|
|
|
PK_ID = IDGen.NextID().ToString();
|
|
|
|
|
|
|
|
|
|
CreatedTime = DateTime.Now;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 服务项代码
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SERVICE_PROJECT_CODE { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 服务项名称
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SERVICE_PROJECT_NAME { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 显示顺序号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int SORT_NO { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 是否启用
|
|
|
|
|
/// </summary>
|
|
|
|
|
public int IS_ENABLE { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 服务项目说明
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string SERVICE_PROJECT_NOTE { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|