16 lines
379 B
C#
16 lines
379 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Crm.Domain.Dto.Extuser
|
|
{
|
|
public class ExtUserCreateDto
|
|
{
|
|
public string resid { get; set; }
|
|
public string userid { get; set; }
|
|
public string? deptcode { get; set; }
|
|
public string? type { get; set; }
|
|
}
|
|
} |