using Myshipping.Core; using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Myshipping.Application.Entity { [Tenant(CommonConst.MasterDb)] public class ServiceWorkFlowProjectRelation { /// /// 主键 /// [SugarColumn(ColumnDescription = "主键", IsPrimaryKey = true)] public string PK_ID { get; set; } /// /// 服务流程主键 /// public string SERVICE_WORKFLOW_ID { get; set; } /// /// 服务项目主键 /// public string SERVICE_PROJECT_ID { get; set; } } }