22 lines
457 B
C#
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; }
|
|
}
|
|
}
|