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.
|
|
|
|
using SqlSugar;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace HybirdFrameworkEntity.DbModel
|
|
|
|
|
{
|
|
|
|
|
[SugarTable("sys_battery_replace_log")]
|
|
|
|
|
public class sysBatteryReplaceLog
|
|
|
|
|
{
|
|
|
|
|
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
|
|
|
|
|
public int? f_id { get; set; }
|
|
|
|
|
public string? f_new_battery_no { get; set; }
|
|
|
|
|
public string? f_old_battery_no { get; set; }
|
|
|
|
|
public string? f_new_battery_position { get; set; }
|
|
|
|
|
public string? f_old_battery_position { get; set; }
|
|
|
|
|
public string? f_start_time { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|