using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using ARW.Model.Models.Business.CustomerServices; namespace ARW.Model.Dto.Api.CustomerServices { /// /// 客服查询对象Api /// /// @author lwh /// @date 2023-10-21 /// public class CustomerServiceQueryDtoApi { public string CustomerServiceName { get; set; } public string CustomerServicePhone { get; set; } } }