using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using WIDESEA_Core.Attributes; namespace WIDESEA_DTO.ERP { [ModelValidate] public class Root { /// /// /// public string From { get; set; } /// /// /// public string DateTime { get; set; } /// /// /// [PropertyValidate("内容", NotNullAndEmpty = true)] public T Content { get; set; } } }