初始化项目

This commit is contained in:
2025-11-26 17:42:45 +08:00
commit 65ecc68767
2513 changed files with 1313954 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Models.ModelT
{
public class TBL_StationList
{
public int ID { get; set; }
public int ProjectID { get; set; }
public string StationName { get; set; }
public string StationType { get; set; }
public int ArtworkOrder { get; set; }
public string StationDesc { get; set; }
public Nullable<System.DateTime> LastUpdateDate { get; set; }
public string LogTableName { get; set; }
public byte[] PreviewImage { get; set; }
public string Remark { get; set; }
public string PacketName { get; set; }
public Nullable<int> SnListOrder { get; set; }
public Nullable<sbyte> IsValid { get; set; }
public Nullable<int> SnType { get; set; }
public string EditPwd { get; set; }
public string ReleasePwd { get; set; }
public string PacketMd5 { get; set; }
}
}