using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace LeaRun.Application.Entity.DMAManage { /// /// 关系表实体类 /// public class DMAMeterRelationEntity { /// /// 关系id /// public string RelationID { get; set; } /// /// dmaid /// public string DMAID { get; set; } /// /// 考核表id /// public string MeterAssessmentId { get; set; } /// /// 考核表名称 /// public string MeterAssessmentName { get; set; } /// /// 考核表编码 /// public string MeterAssessmentCode { get; set; } } }