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.
|
|
|
|
using System;
|
|
|
|
|
using System.Data;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using HcUtility.Core;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
|
|
|
|
namespace DSWeb.MvcShipping.Models.MsUserMsgSet
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
[JsonObject]
|
|
|
|
|
public class UserMsgSet : ModelObjectBillBody
|
|
|
|
|
{
|
|
|
|
|
#region 私有成员
|
|
|
|
|
private string _GID = Guid.NewGuid().ToString();//业务编号
|
|
|
|
|
private string _USERID;//
|
|
|
|
|
private string _WORKFLOWTYPE_NAME;//
|
|
|
|
|
private string _WORKFLOWTYPE_DESCRIPTION;//
|
|
|
|
|
private string _ISRECEIVE;//
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
public UserMsgSet()
|
|
|
|
|
{
|
|
|
|
|
TableName = "user_msg_set";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#region 读写属性
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 主键唯一值
|
|
|
|
|
/// </summary>
|
|
|
|
|
[ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)]
|
|
|
|
|
public string GID
|
|
|
|
|
{
|
|
|
|
|
get { return _GID; }
|
|
|
|
|
set { _GID = value; }
|
|
|
|
|
}
|
|
|
|
|
[ModelDB]
|
|
|
|
|
public string USERID
|
|
|
|
|
{
|
|
|
|
|
get { return _USERID; }
|
|
|
|
|
set { _USERID = value; }
|
|
|
|
|
}
|
|
|
|
|
[ModelDB]
|
|
|
|
|
public string WORKFLOWTYPE_NAME
|
|
|
|
|
{
|
|
|
|
|
get { return _WORKFLOWTYPE_NAME; }
|
|
|
|
|
set { _WORKFLOWTYPE_NAME = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string WORKFLOWTYPE_DESCRIPTION
|
|
|
|
|
{
|
|
|
|
|
get { return _WORKFLOWTYPE_DESCRIPTION; }
|
|
|
|
|
set { _WORKFLOWTYPE_DESCRIPTION = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string ISRECEIVE
|
|
|
|
|
{
|
|
|
|
|
get { return _ISRECEIVE; }
|
|
|
|
|
set { _ISRECEIVE = value; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
override public string GetBillNoFieldName()
|
|
|
|
|
{
|
|
|
|
|
return "GID";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|