26 lines
743 B
C#
26 lines
743 B
C#
using JNPF.Common.Contracts;
|
|
using JNPF.Common.Security;
|
|
using SqlSugar;
|
|
|
|
namespace Tnb.ProductionMgr.Entities
|
|
{
|
|
[SugarTable("andon_breakdown")]
|
|
public partial class AndonBreakDown : BaseEntity<string>
|
|
{
|
|
public AndonBreakDown()
|
|
{
|
|
id = SnowflakeIdHelper.NextId();
|
|
}
|
|
public string? name { get; set; }
|
|
public string? code { get; set; }
|
|
public string? description { get; set; }
|
|
|
|
public string? type_id { get; set; }
|
|
public string? remark { get; set; }
|
|
public string? create_id { get; set; }
|
|
public DateTime? create_time { get; set; }
|
|
public string? modify_id { get; set; }
|
|
public DateTime? modify_time { get; set; }
|
|
|
|
}
|
|
} |