16 lines
331 B
C#
16 lines
331 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Core.Domain.Dto.Crm
|
|
{
|
|
public class WwHhuserEidDto
|
|
{
|
|
public string? USERID { get; set; }
|
|
public string? CORPID { get; set; }
|
|
public decimal EID { get; set; }
|
|
}
|
|
}
|