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.
47 lines
1.0 KiB
47 lines
1.0 KiB
2 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Runtime.Serialization;
|
||
|
using System.Text;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace WebApplication1.Models
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 案卡信息
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
[DataContract]
|
||
|
|
||
|
public class Case_Card_Copy
|
||
|
{
|
||
|
[DataMember]
|
||
|
public string Id { get; set; }
|
||
|
/// <summary>
|
||
|
/// 案件信息id
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string caseID { get; set; }
|
||
|
/// <summary>
|
||
|
/// 案卡树形json
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string akjson { get; set; }
|
||
|
/// <summary>
|
||
|
/// 状态是否是选项卡
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public int state { get; set; }
|
||
|
/// <summary>
|
||
|
/// 排序
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public string sort { get; set; }
|
||
|
/// <summary>
|
||
|
/// 是否删除
|
||
|
/// </summary>
|
||
|
[DataMember]
|
||
|
public int Isdelete { get; set; }
|
||
|
}
|
||
|
}
|