3 changed files with 69 additions and 0 deletions
@ -0,0 +1,41 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.ComponentModel.DataAnnotations; |
||||
|
using System.ComponentModel.DataAnnotations.Schema; |
||||
|
using Microsoft.EntityFrameworkCore; |
||||
|
using System.Runtime.Serialization; |
||||
|
|
||||
|
#nullable disable |
||||
|
|
||||
|
namespace AMESCoreStudio.WebApi.Models.AMES |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 安勤轉拋 KeyParts
|
||||
|
/// </summary>
|
||||
|
[Table("C_SFIS_KEYPARTS", Schema = "JHAMES")] |
||||
|
public partial class CSfisKeypart |
||||
|
{ |
||||
|
[Column("PRODUCTSN")] |
||||
|
[StringLength(20)] |
||||
|
public string Productsn { get; set; } |
||||
|
|
||||
|
[Column("PARTBARCODE")] |
||||
|
[StringLength(20)] |
||||
|
public string Partbarcode { get; set; } |
||||
|
|
||||
|
[Column("MOID")] |
||||
|
[StringLength(15)] |
||||
|
public string Moid { get; set; } |
||||
|
|
||||
|
[Column("PARTTYPEID")] |
||||
|
[StringLength(15)] |
||||
|
public string Parttypeid { get; set; } |
||||
|
|
||||
|
[Column("MATERIALID")] |
||||
|
[StringLength(20)] |
||||
|
public string Materialid { get; set; } |
||||
|
|
||||
|
[Column("CREATE_DATE", TypeName = "DATE")] |
||||
|
public DateTime? CreateDate { get; set; } |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue