19 lines
404 B
C#
19 lines
404 B
C#
|
|
using APT.Infrastructure.Core;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Text;
|
|||
|
|
|
|||
|
|
namespace APT.BaseData.Domain.Entities.Platform
|
|||
|
|
{
|
|||
|
|
[IgnoreT4] public class T_PF_ECM_LOG : MesEntityBase
|
|||
|
|
{
|
|||
|
|
public string API_ADDRESS { get; set; }
|
|||
|
|
|
|||
|
|
public string ECMSAGE { get; set; }
|
|||
|
|
|
|||
|
|
public string DESC { get; set; }
|
|||
|
|
|
|||
|
|
public string JOB_CODE { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|