mh_lcmk_sms_service/APT.BaseData.Domain/ApiModel/PF/BatchUpdateModel.cs
2024-07-12 16:37:09 +08:00

19 lines
380 B
C#

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