20 lines
493 B
C#
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; }
|
|
}
|
|
}
|