using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using ARW.Model.Models.Business.TableDataManage.CustomerFollows; namespace ARW.Model.Dto.Business.TableDataManage.CustomerFollows { /// /// 客户关注输入对象 /// /// @author lwh /// @date 2023-11-24 /// public class CustomerFollowDto { public int CustomerFollowId { get; set; } public long CustomerFollowGuid { get; set; } [Required(ErrorMessage = "客户Guid不能为空")] public long CustomerGuid { get; set; } [Required(ErrorMessage = "表格数据Guid不能为空")] public long TableDataGuid { get; set; } } /// /// 客户关注查询对象 /// /// @author lwh /// @date 2023-11-24 /// public class CustomerFollowQueryDto : PagerInfo { public string CustomerName { get; set; } public string CustomerPhone { get; set; } public string TableDataProcurementContent { get; set; } public string ids { get; set; } } }