28 lines
699 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using SqlSugar;
namespace Learun.Application.WeChat.WeChat
{
/// <summary>
/// 版 本 Learun-ADMS V6.1.6.0 敏捷开发框架
/// Copyright (c) 2013-2017 Hexagon PPM
/// 创 建:超级管理员
/// 日 期2017-09-22 12:01
/// 描 述:创建部门返回类
/// </summary>
public class WXDepartmentReMsgEntity
{
/// <summary>
/// 错误码
/// </summary>
public int errcode { get; set; }
/// <summary>
/// 错误内容
/// </summary>
public string errmsg { get; set; }
/// <summary>
/// 创建的部门id
/// </summary>
public int? id { get; set; }
}
}