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
1004 B
41 lines
1004 B
namespace Warehouse.Models.mesLevel4
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
public partial class master_supplier
|
|
{
|
|
[Key]
|
|
[StringLength(20)]
|
|
public string supplier_code { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(45)]
|
|
public string descriptions { get; set; }
|
|
|
|
public byte active_flag { get; set; }
|
|
|
|
public byte v_flag_cell { get; set; }
|
|
|
|
public byte v_flag_bks { get; set; }
|
|
|
|
public byte v_flag_eva { get; set; }
|
|
|
|
public byte v_flag_glass { get; set; }
|
|
|
|
public byte v_flag_hulian { get; set; }
|
|
|
|
public byte v_flag_huiliu { get; set; }
|
|
|
|
public byte v_flag_jbox { get; set; }
|
|
|
|
public byte v_flag_glue { get; set; }
|
|
|
|
public byte v_flag_frame { get; set; }
|
|
|
|
public byte v_flag_solder { get; set; }
|
|
}
|
|
}
|
|
|