Files
zszq-trs/YLErpDAL/BLL/EodSettlement/Dto/ClientSamePeerDto.cs
T
2024-05-09 14:06:26 +08:00

22 lines
457 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.BLL.EodSettlement.Dto
{
/// <summary>
/// 客户同业非同业数据
/// </summary>
public class ClientSamePeerDto
{
public int Id { get; set; }
/// <summary>
/// 同业/非同业(0:同业;1:非同业)
/// </summary>
public int SamePeer { get; set; }
}
}