You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
796 B
40 lines
796 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace QMAPP.Web.Models.Sys
|
|
{
|
|
/// <summary>
|
|
/// 用户相关仓库
|
|
/// </summary>
|
|
public class UserCorpModel
|
|
{
|
|
/// <summary>
|
|
/// 序号
|
|
/// </summary>
|
|
public int Seq { get; set; }
|
|
|
|
///<summary>
|
|
///仓库主键
|
|
///</summary>
|
|
public string CORPID { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///仓库编号
|
|
///</summary>
|
|
public string CORPCODE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///仓库名称
|
|
///</summary>
|
|
public string CORPNAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 删除
|
|
/// </summary>
|
|
public string DeleteAction { get; set; }
|
|
}
|
|
}
|