using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; namespace APT.BaseData.Domain.ApiModel.PF { [Description("批量更新的实体")] public class BatchUpdateModel { public List DataRule { get; set; } public List OrgRule { get; set; } public List Data { get; set; } } }