Api_WorkOrderResponse_Info.cs 2.15 KB
using System;
using SqlSugar;

namespace Hh.Mes.POJO.Entity
{
    [SugarTable("Api_WorkOrderResponse_Info")]
    public partial class Api_WorkOrderResponse_Info : base_Entity
    {
        /// <summary>
        /// 主键
        /// </summary>
        [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
        public int id { get; set; }

        /// <summary>
        /// 工单号
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "工单号", IsNullable = true)]
        public string workOrderCode { get; set; }

        /// <summary>
        /// 状态
        /// </summary>
        [SugarColumn(ColumnDescription = "状态", IsNullable = false)]
        public string state { get; set; }

        /// <summary>
        /// 请求码,每次唯一
        /// </summary>
        [SugarColumn(Length = 120, ColumnDescription = "请求码,每次唯一", IsNullable = false)]
        public string reqKey { get; set; }

        /// <summary>
        /// 返回信息
        /// </summary>
        [SugarColumn(Length = 255, ColumnDescription = "返回信息", IsNullable = true)]
        public string msg { get; set; }

        /// <summary>
        /// 回调返回信息
        /// </summary>
        [SugarColumn(Length = 255, ColumnDescription = "回调返回信息", IsNullable = true)]
        public string returnMsg { get; set; }

        /// <summary>
        /// 操作人员
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "操作人员", IsNullable = false)]
        public string createBy { get; set; }

        /// <summary>
        /// 操作时间
        /// </summary>
        [SugarColumn(ColumnDescription = "操作时间", IsNullable = false)]
        public DateTime createTime { get; set; }

        /// <summary>
        /// 更新时间
        /// </summary>
        [SugarColumn(ColumnDescription = "更新时间", IsNullable = true)]
        public DateTime updateTime { get; set; }

        /// <summary>
        /// 更新人员
        /// </summary>
        [SugarColumn(Length = 50, ColumnDescription = "更新人员", IsNullable = true)]
        public string updateby { get; set; }

    }
}