using JNPF.DependencyInjection; namespace JNPF.Apps.Entitys.Dto; /// /// App常用数据创建输入. /// [SuppressSniffer] public class AppDataCrInput { /// /// 应用类型. /// public string? objectType { get; set; } /// /// 应用主键. /// public string? objectId { get; set; } /// /// 数据. /// public string? objectData { get; set; } }