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.
73 lines
1.8 KiB
C#
73 lines
1.8 KiB
C#
using Estsh.Core.Base;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace Estsh.Core.Models
|
|
{
|
|
/// <summary>
|
|
/// ,数据实体对象
|
|
/// </summary>
|
|
[Table("g_account_misc")]
|
|
[Serializable]
|
|
public class GAccountMisc : BaseEntity
|
|
{
|
|
[Column("account_misc_id")]
|
|
[DisplayName(" ")]
|
|
public long AccountMiscId { get; set; }
|
|
|
|
[Column("account_id")]
|
|
[DisplayName(" ")]
|
|
public long? AccountId { get; set; }
|
|
|
|
[Column("account_item_id")]
|
|
[DisplayName(" ")]
|
|
public long? AccountItemId { get; set; }
|
|
|
|
[Column("factory")]
|
|
[DisplayName(" ")]
|
|
public string Factory { get; set; }
|
|
|
|
[Column("water_line")]
|
|
[DisplayName(" ")]
|
|
public string WaterLine { get; set; }
|
|
|
|
[Column("balance_point")]
|
|
[DisplayName(" ")]
|
|
public string BalancePoint { get; set; }
|
|
|
|
[Column("water_no")]
|
|
[DisplayName(" ")]
|
|
public string WaterNo { get; set; }
|
|
|
|
[Column("product")]
|
|
[DisplayName(" ")]
|
|
public string Product { get; set; }
|
|
|
|
[Column("part_class_code")]
|
|
[DisplayName(" ")]
|
|
public string PartClassCode { get; set; }
|
|
|
|
[Column("part_class_name")]
|
|
[DisplayName(" ")]
|
|
public string PartClassName { get; set; }
|
|
|
|
[Column("type_code")]
|
|
[DisplayName(" ")]
|
|
public string TypeCode { get; set; }
|
|
|
|
[Column("endabled")]
|
|
[DisplayName(" ")]
|
|
public string Endabled { get; set; }
|
|
|
|
[Column("create_uesrid")]
|
|
[DisplayName(" ")]
|
|
public int CreateUesrid { get; set; }
|
|
|
|
[Column("timesamp")]
|
|
[DisplayName(" ")]
|
|
public DateTime? Timesamp { get; set; }
|
|
|
|
|
|
}
|
|
}
|