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.
37 lines
923 B
37 lines
923 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 customer
|
|
{
|
|
[Key]
|
|
[StringLength(20)]
|
|
public string cust_id { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(45)]
|
|
public string cust_desc { get; set; }
|
|
|
|
public byte active_flag { get; set; }
|
|
|
|
public short? el_grade_id { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string el_grade_value { get; set; }
|
|
|
|
public short? ex_grade_id { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string ex_grade_value { get; set; }
|
|
|
|
public short? freezing_time { get; set; }
|
|
|
|
public byte jbox_control_flag { get; set; }
|
|
|
|
public byte ny_control_flag { get; set; }
|
|
}
|
|
}
|
|
|