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.
35 lines
1.4 KiB
35 lines
1.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AIK.Models.SQLiteModels
|
|
{
|
|
public class SplitCacheKzInfoListItem
|
|
{
|
|
public int ModelListId { get; set; } // 外键:指向 SplitCache_ModelList.Id
|
|
|
|
public string binAddress { get; set; } = string.Empty;
|
|
public string binAddressArray { get; set; } = "[]";
|
|
public string chipType { get; set; } = string.Empty;
|
|
public bool cloudRemote { get; set; }
|
|
public bool dzxp { get; set; }
|
|
public string firmwareNo { get; set; } = string.Empty;
|
|
public bool fixedByte { get; set; }
|
|
public string fixedByteArray { get; set; } = "[]";
|
|
public string fixedByteArrays { get; set; } = string.Empty;
|
|
public string sourceUrl { get; set; } = string.Empty;
|
|
public bool sp { get; set; }
|
|
public string spCode { get; set; } = string.Empty;
|
|
public bool tsRand { get; set; }
|
|
public string tsRandStr { get; set; } = string.Empty;
|
|
public string type { get; set; } = string.Empty;
|
|
public bool updateByte { get; set; }
|
|
public string usable { get; set; } = string.Empty;
|
|
public string ysSource { get; set; } = string.Empty;
|
|
public string ysSourceNo { get; set; } = string.Empty;
|
|
public string zsId { get; set; } = string.Empty;
|
|
public string CreateTime { get; set; } = string.Empty;
|
|
}
|
|
}
|
|
|