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.
56 lines
1.3 KiB
C#
56 lines
1.3 KiB
C#
using System;
|
|
using System.Data;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using HcUtility.Core;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.MvcShipping.Models.MsCustComauth
|
|
{
|
|
|
|
[JsonObject]
|
|
public class MsCustComauthModel : ModelObjectBillHead
|
|
{
|
|
#region 私有成员
|
|
private string _GID = Guid.NewGuid().ToString();//业务编号
|
|
private string _COMTYPE;//
|
|
private string _UserId;//
|
|
private string _IsDef;
|
|
public string SHOWNAME { get; set; }
|
|
|
|
#endregion
|
|
|
|
public MsCustComauthModel()
|
|
{
|
|
TableName = "Cust_Comauth";
|
|
}
|
|
|
|
#region 读写属性
|
|
/// <summary>
|
|
/// 主键唯一值
|
|
/// </summary>
|
|
[ModelDB(MDBType = ModelDBOprationType.All, IsPrimary = true)]
|
|
public string GID
|
|
{
|
|
get { return _GID; }
|
|
set { _GID = value; }
|
|
}
|
|
|
|
[ModelDB]
|
|
public string COMTYPE { get => _COMTYPE; set => _COMTYPE = value; }
|
|
[ModelDB]
|
|
public string UserId { get => _UserId; set => _UserId = value; }
|
|
[ModelDB]
|
|
public string IsDef { get => _IsDef; set => _IsDef = value; }
|
|
#endregion
|
|
}
|
|
|
|
[JsonObject]
|
|
public class MsSelModel
|
|
{
|
|
public string text { get; set; }
|
|
public string value { get; set; }
|
|
}
|
|
|
|
}
|