53 lines
1.1 KiB
C#
53 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using ARW.Model.Models.Business.TableDataManage.CustomerFollows;
|
|
|
|
namespace ARW.Model.Dto.Business.TableDataManage.CustomerFollows
|
|
{
|
|
/// <summary>
|
|
/// 客户关注输入对象
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-11-24
|
|
/// </summary>
|
|
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; }
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
/// <summary>
|
|
/// 客户关注查询对象
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-11-24
|
|
/// </summary>
|
|
public class CustomerFollowQueryDto : PagerInfo
|
|
{
|
|
public string CustomerName { get; set; }
|
|
public string CustomerPhone { get; set; }
|
|
|
|
public string TableDataProcurementContent { get; set; }
|
|
public string ids { get; set; }
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|