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.
111 lines
2.9 KiB
C#
111 lines
2.9 KiB
C#
using System;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.MvcShipping.Models.MsOpStatus
|
|
{
|
|
[JsonObject]
|
|
public class MsOpStatus : ModelObjectBillHead
|
|
{
|
|
#region 私有成员
|
|
private string _ST_ID ="";//编号
|
|
private string _BSNO ="*";//业务编号
|
|
private string _STATUS = "";
|
|
private bool _ISCOMP = false;
|
|
private string _ISOPEN ="0";
|
|
private string _ISOPENREF = "不公开";
|
|
private string _COMPTIME = "";
|
|
private string _COMPOP = "";
|
|
private string _INPUTBY = "";
|
|
private string _INPUTTIME ="";
|
|
private int _ORDNO =0;
|
|
private string _REMARK = "";
|
|
private string _STATUS_OPSEAE = "";
|
|
|
|
#endregion
|
|
|
|
|
|
#region 读写属性
|
|
|
|
/// <summary>
|
|
/// 编号
|
|
/// </summary>
|
|
[ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)]
|
|
public string ST_ID { get { return _ST_ID; } set { _ST_ID = value; } }
|
|
|
|
|
|
/// <summary>
|
|
/// 业务编号
|
|
/// </summary>
|
|
[ModelDB]
|
|
public string BSNO { get { return _BSNO; } set { _BSNO = value; } }
|
|
|
|
/// 业务状态
|
|
/// </summary>
|
|
[ModelDB]
|
|
public string STATUS { get { return _STATUS; } set { _STATUS = value; } }
|
|
|
|
|
|
|
|
[ModelDB]
|
|
public bool ISCOMP { get { return _ISCOMP; } set { _ISCOMP = value; } }
|
|
|
|
[ModelDB]
|
|
public string ISOPEN { get { return _ISOPEN; } set { _ISOPEN = value; } }
|
|
public string ISOPENREF { get { return _ISOPENREF; } set { _ISOPENREF = value; } }
|
|
|
|
|
|
[ModelDB]
|
|
public string COMPTIME { get { return _COMPTIME; } set { _COMPTIME = value; } }
|
|
|
|
[ModelDB]
|
|
public string COMPOP { get { return _COMPOP; } set { _COMPOP = value; } }
|
|
|
|
[ModelDB]
|
|
public string INPUTBY { get { return _INPUTBY; } set { _INPUTBY = value; } }
|
|
|
|
[ModelDB]
|
|
public string INPUTTIME { get { return _INPUTTIME; } set { _INPUTTIME = value; } }
|
|
|
|
[ModelDB]
|
|
public int ORDNO { get { return _ORDNO; } set { _ORDNO = value; } }
|
|
|
|
[ModelDB]
|
|
public string REMARK { get { return _REMARK; } set { _REMARK = value; } }
|
|
|
|
[ModelDB]
|
|
public string STATUS_OPSEAE { get { return _STATUS_OPSEAE; } set { _STATUS_OPSEAE = value; } }
|
|
|
|
public string OPTIME { get; set; }
|
|
|
|
#endregion
|
|
|
|
public MsOpStatus()
|
|
{
|
|
TableName = "op_status";
|
|
}
|
|
|
|
override public string GetBillNoFieldName()
|
|
{
|
|
return "BsNo";
|
|
}
|
|
}
|
|
|
|
public class MsDispClient : ModelObjectBillHead
|
|
{
|
|
public string GID { get; set; }
|
|
public string Name { get; set; }
|
|
public string Tel { get; set; }
|
|
public string OpenId { get; set; }
|
|
public string InfoClient { get; set; }
|
|
}
|
|
|
|
|
|
|
|
#region 参照部分
|
|
|
|
|
|
|
|
#endregion
|
|
}
|