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.
DS7/DSWeb/Models/JsonOpBlissueEntity.cs

75 lines
1.7 KiB
C#

2 years ago
using System;
using System.Data;
using System.Collections;
using System.Collections.Generic;
namespace DSWeb.Models
{
public class JsonOpBlissueEntity
{
#region 私有成员
private string _ID;// 自增编号
private string _BSNO;// 业务编号
private string _BLSTATUS;// 处理状态
private string _OPNAME;// 处理人
private DateTime _OPTIME;// 处理时间
private string _REMARK;// 备注
#endregion
public JsonOpBlissueEntity()
{
}
#region 读写属性
/// <summary>
/// 自增编号
/// </summary>
public string OpBlissue1
{
get { return _ID; }
set { _ID = value; }
}
/// <summary>
/// 处理状态
/// </summary>
public string OpBlissue2
{
get { return _BLSTATUS; }
set { _BLSTATUS = value; }
}
/// <summary>
/// 处理时间
/// </summary>
public DateTime OpBlissue3
{
get { return _OPTIME; }
set { _OPTIME = value; }
}
/// <summary>
/// 处理人
/// </summary>
public string OpBlissue4
{
get { return _OPNAME; }
set { _OPNAME = value; }
}
/// <summary>
/// 备注
/// </summary>
public string OpBlissue7
{
get { return _REMARK; }
set { _REMARK = value; }
}
/// <summary>
/// 业务编号
/// </summary>
public string OpBlissue8
{
get { return _BSNO; }
set { _BSNO = value; }
}
#endregion
}
}