Files
zszq-trs/Framework/YLErp.Core/DBModels/ClientAMRNetBaseInfo.cs
T
2024-05-09 14:06:26 +08:00

20 lines
493 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace YLErp.DBModels
{
[Table("AMR_N042_ENT_BASEINFO_COPY" )]
public class AMR_N042_ENT_BASEINFO_COPY
{
[Key]
public string REC_ID { get; set; }
public string ENT_NAME { get; set; }
public string USCC_CODE { get; set; }
}
}