| 1234567891011121314151617181920212223 | using System;using System.Collections.Generic;using System.ComponentModel.DataAnnotations;using System.ComponentModel.DataAnnotations.Schema;using System.Linq;using System.Text;using System.Threading.Tasks;namespace XdCxRhDW.Repostory.Model{    /// <summary>    /// 目标信息    /// </summary>    [Table("TargetInfo")]    public class TargetInfo : BaseModel    {        /// <summary>        /// 目标名称        /// </summary>        [Display(Name = "目标名称")]        public string TargetName { get; set; }    }}
 |