2022-11-01 19:15:02 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
|
|
|
|
|
|
namespace FrontendWebApi.Models
|
|
|
|
|
{
|
|
|
|
|
public class GraphList
|
|
|
|
|
{
|
2022-11-09 18:01:22 +08:00
|
|
|
|
public int id { get; set; }
|
2022-11-01 19:15:02 +08:00
|
|
|
|
public string code { get; set; }
|
2022-11-04 09:41:50 +08:00
|
|
|
|
public string main_system_tag { get; set; }
|
|
|
|
|
public int sub_system_tag { get; set; }
|
2022-12-13 18:41:32 +08:00
|
|
|
|
public int layer_id { get; set; }
|
2022-11-01 19:15:02 +08:00
|
|
|
|
public string name { get; set; }
|
|
|
|
|
public string oriOrgName { get; set; }
|
|
|
|
|
public string oriSavName { get; set; }
|
|
|
|
|
public string donOrgName { get; set; }
|
|
|
|
|
public string donSavName { get; set; }
|
2022-12-14 18:27:51 +08:00
|
|
|
|
public long? oriSize { get; set; }
|
|
|
|
|
public long? donSize { get; set; }
|
2022-11-01 19:15:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class GraphInsInfo
|
|
|
|
|
{
|
2022-11-09 18:01:22 +08:00
|
|
|
|
public int id { get; set; }
|
2022-11-01 19:15:02 +08:00
|
|
|
|
public string code { get; set; }
|
2022-12-13 18:41:32 +08:00
|
|
|
|
public int layer_id { get; set; }
|
2022-11-04 09:41:50 +08:00
|
|
|
|
public string main_system_tag { get; set; }
|
|
|
|
|
public string sub_system_tag { get; set; }
|
2022-11-01 19:15:02 +08:00
|
|
|
|
public string name { get; set; }
|
|
|
|
|
public string oriOrgName { get; set; }
|
|
|
|
|
public string oriSavName { get; set; }
|
|
|
|
|
public string donOrgName { get; set; }
|
|
|
|
|
public string donSavName { get; set; }
|
|
|
|
|
public int priority { get; set; }
|
|
|
|
|
public IFormFile oriFile { get; set; }
|
|
|
|
|
public IFormFile donFile { get; set; }
|
2022-12-14 18:27:51 +08:00
|
|
|
|
public long? oriSize{ get; set; }
|
|
|
|
|
public long? donSize { get; set; }
|
2022-11-01 19:15:02 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-11-09 11:05:33 +08:00
|
|
|
|
public class GraphInfo: Actor
|
2022-11-01 19:15:02 +08:00
|
|
|
|
{
|
2022-11-09 18:01:22 +08:00
|
|
|
|
public int id { get; set; }
|
2022-11-01 19:15:02 +08:00
|
|
|
|
public string code { get; set; }
|
2022-11-04 09:41:50 +08:00
|
|
|
|
public string main_system_tag { get; set; }
|
2022-12-13 18:41:32 +08:00
|
|
|
|
public List<int> sub_system_tag { get; set; } = new List<int>();
|
2022-11-01 19:15:02 +08:00
|
|
|
|
public string keyWord { get; set; }
|
2022-12-13 18:41:32 +08:00
|
|
|
|
public int? layer_id { get; set; }
|
2022-11-01 19:15:02 +08:00
|
|
|
|
}
|
2022-12-12 16:10:02 +08:00
|
|
|
|
|
|
|
|
|
public class GraphVar
|
|
|
|
|
{
|
|
|
|
|
public int id { get; set; }
|
|
|
|
|
public string system_key { get; set; }
|
|
|
|
|
public string system_type { get; set; }
|
|
|
|
|
public int system_parent_id { get; set; }
|
|
|
|
|
}
|
2023-05-16 12:15:38 +08:00
|
|
|
|
|
|
|
|
|
public class GraphManageTree
|
|
|
|
|
{
|
|
|
|
|
public int id { get; set; }
|
|
|
|
|
|
|
|
|
|
public short deleted { get; set; }
|
|
|
|
|
public string name{ get; set; }
|
|
|
|
|
public string remark{ get; set; }
|
|
|
|
|
public int priority{ get; set; }
|
|
|
|
|
public int parent_id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string created_by { get; set; }
|
|
|
|
|
public DateTime created_at { get; set; }
|
|
|
|
|
public string updated_by { get; set; }
|
|
|
|
|
public DateTime? updated_at { get; set; }
|
|
|
|
|
|
|
|
|
|
}
|
2022-11-01 19:15:02 +08:00
|
|
|
|
}
|