You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.0 KiB
41 lines
1.0 KiB
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; }
|
|
}
|
|
}
|
|
|