You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

87 lines
2.0 KiB
C#

using FreeSql.DatabaseModel;using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using Newtonsoft.Json;
using FreeSql.DataAnnotations;
namespace djy.Model {
[JsonObject(MemberSerialization.OptIn), Table(Name = "op_status", DisableSyncStructure = true)]
public partial class OpStatus {
/// <summary>
/// 编号
/// </summary>
[JsonProperty, Column(Name = "ST_ID", DbType = "varchar(36)", IsPrimary = true, IsNullable = false)]
public string STID { get; set; } = Guid.NewGuid().ToString().ToUpper();
/// <summary>
/// 业务编号
/// </summary>
[JsonProperty, Column(DbType = "varchar(100)")]
public string BSNO { get; set; }
/// <summary>
/// 完成人
/// </summary>
[JsonProperty, Column(DbType = "varchar(10)")]
public string COMPOP { get; set; }
/// <summary>
/// 完成时间
/// </summary>
[JsonProperty, Column(InsertValueSql = "getdate()")]
public DateTime? COMPTIME { get; set; }
/// <summary>
/// 录入人
/// </summary>
[JsonProperty, Column(DbType = "varchar(36)")]
public string INPUTBY { get; set; }
/// <summary>
/// 录入时间
/// </summary>
[JsonProperty, Column(InsertValueSql = "getdate()")]
public DateTime? INPUTTIME { get; set; }
/// <summary>
/// 是否完成
/// </summary>
[JsonProperty]
public bool? ISCOMP { get; set; }
/// <summary>
/// 顺序号
/// </summary>
[JsonProperty]
public int? ORDNO { get; set; }
/// <summary>
/// 备注
/// </summary>
[JsonProperty, Column(DbType = "varchar(100)")]
public string REMARK { get; set; }
/// <summary>
/// 业务状态
/// </summary>
[JsonProperty, Column(DbType = "varchar(20)")]
public string STATUS { get; set; }
/// <summary>
/// 对应op_seae状态字段
/// </summary>
[JsonProperty, Column(Name = "STATUS_OPSEAE", DbType = "varchar(10)")]
public string STATUSOPSEAE { get; set; }
[JsonProperty, Column(DbType = "varchar(1)")]
public string STTYPE { get; set; }
}
}