26 lines
523 B
C#
26 lines
523 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Runtime.Serialization;
|
|
using System.Text;
|
|
|
|
namespace SOH.Entities.DTO
|
|
{
|
|
[Serializable()]
|
|
[DataContract(IsReference = true)]
|
|
public class dto_sfmx
|
|
{
|
|
/// <summary>
|
|
/// 金额
|
|
/// </summary>
|
|
[DataMember]
|
|
public int je { get; set; }
|
|
|
|
/// <summary>
|
|
/// 类型 0 现金 1银行卡 --
|
|
/// </summary>
|
|
[DataMember]
|
|
public byte lx { get; set; }
|
|
}
|
|
}
|