You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
2.0 KiB
C#

using System;
namespace CentralControl.BaseData
{
public class BaseEquipment
{
public int EquipmentId { get; set; }
public string EquipmentCode { get; set; }
public string EquipmentName { get; set; }
public string EquipmentBrand { get; set; }
public string EquipmentSpec { get; set; }
public long EquipmentTypeId { get; set; }
public string EquipmentTypeCode { get; set; }
public string EquipmentTypeName { get; set; }
public long WorkshopId { get; set; }
public string WorkshopCode { get; set; }
public string WorkshopName { get; set; }
public string Status { get; set; }
public string Remark { get; set; }
public string Attr1 { get; set; }
public string Attr2 { get; set; }
public string Attr3 { get; set; }
public string Attr4 { get; set; }
public DateTime CreateTime { get; set; }
public string CreateBy { get; set; }
public DateTime UpdateTime { get; set; }
public string UpdateBy { get; set; }
public string WorkshopSection { get; set; }
public string EquipmentLocation { get; set; }
public decimal HourlyUnitPrice { get; set; }
public string EquipmentBarcode { get; set; }
public string EquipmentBarcodeImage { get; set; }
public string Manufacturer { get; set; }
public string Supplier { get; set; }
public int UseLife { get; set; }
public DateTime BuyTime { get; set; }
public decimal AssetOriginalValue { get; set; }
public decimal NetAssetValue { get; set; }
public string AssetHead { get; set; }
public string FixedAssetCode { get; set; }
public string Department { get; set; }
public int UnitWorkingHours { get; set; }
public string PlcIp { get; set; }
public int PlcPort { get; set; }
public bool DelFlag { get; set; }
public string SapAsset { get; set; }
public string EquipmentHead { get; set; }
}
}