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.
36 lines
980 B
C#
36 lines
980 B
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 = "t_op_msg", DisableSyncStructure = true)]
|
|
public partial class TOpMsg {
|
|
|
|
[JsonProperty, Column(IsPrimary = true, IsIdentity = true)]
|
|
public int OM { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(200)")]
|
|
public string 备注 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(12)", IsNullable = false)]
|
|
public string 编号 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "smalldatetime")]
|
|
public DateTime? 完成时间 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(20)")]
|
|
public string 消息名称 { get; set; }
|
|
|
|
[JsonProperty, Column(DbType = "varchar(12)", IsNullable = false)]
|
|
public string 业务类型 { get; set; }
|
|
|
|
}
|
|
|
|
}
|