using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace Models { /// /// 设备维修表 /// [SugarTable("OA_ShebeiWeixiu")] public class OA_ShebeiWeixiu { /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="Keyid" ,IsPrimaryKey = true,IsIdentity = true) ] public int Keyid { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="MemberId" ) ] public Guid? MemberId { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="ShebeiId" ) ] public int? ShebeiId { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="WeixiuTime" ) ] public DateTime? WeixiuTime { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="CateId" ) ] public int? CateId { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="Anzhuangdidian" ) ] public string? Anzhuangdidian { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="Name" ) ] public string? Name { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="Remark" ) ] public string? Remark { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="WeixiuPrice" ) ] public decimal? WeixiuPrice { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="Zerenren" ) ] public int? Zerenren { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="ZerenrenName" ) ] public string? ZerenrenName { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="DanzePrice" ) ] public decimal? DanzePrice { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="WeixiuShebeiId" ) ] public int? WeixiuShebeiId { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="FukuanShebeiId" ) ] public int? FukuanShebeiId { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="FukuanshenqingId" ) ] public int? FukuanshenqingId { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="Shifoufufei" ) ] public int? Shifoufufei { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="CreateTime" ) ] public DateTime? CreateTime { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="Creator" ) ] public string? Creator { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="LastUpdateTime" ) ] public DateTime? LastUpdateTime { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="Operator" ) ] public string? Operator { get; set; } /// /// 备 注:审批结果 /// 默认值: /// [SugarColumn(ColumnName="ApprovalStatus" ) ] public int? ApprovalStatus { get; set; } /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName="Fukuanfangshi" ) ] public string? Fukuanfangshi { get; set; } } }