旧版报表、仓库
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.
 
 
 
 
 

99 lines
2.4 KiB

namespace Warehouse.Models.mesModel
{
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Data.Entity.Spatial;
public partial class config_products
{
[Key]
[StringLength(20)]
public string product_code { get; set; }
[Required]
[StringLength(20)]
public string family_code { get; set; }
public short process_group_id { get; set; }
public short crys_type_id { get; set; }
[Required]
[StringLength(45)]
public string crys_type_desc { get; set; }
[Required]
[StringLength(45)]
public string crys_type_value { get; set; }
public short busbar_type_id { get; set; }
[Required]
[StringLength(45)]
public string busbar_type_desc { get; set; }
[Required]
[StringLength(45)]
public string busbar_type_value { get; set; }
public byte cell_qty { get; set; }
public short cell_color_id { get; set; }
[Required]
[StringLength(45)]
public string cell_color_desc { get; set; }
[Required]
[StringLength(45)]
public string cell_color_value { get; set; }
public short mod_spec_id { get; set; }
[Required]
[StringLength(100)]
public string mod_spec_desc { get; set; }
[Required]
[StringLength(45)]
public string mod_spec_value { get; set; }
[Required]
[StringLength(20)]
public string mod_weight { get; set; }
[Required]
[StringLength(20)]
public string fg_code { get; set; }
public DateTime create_date { get; set; }
public DateTime last_update { get; set; }
[Required]
[StringLength(20)]
public string last_update_user { get; set; }
public short process_type { get; set; }
[Required]
[StringLength(45)]
public string process_type_desc { get; set; }
[Required]
[StringLength(45)]
public string process_type_value { get; set; }
public short feature_code { get; set; }
[Required]
[StringLength(45)]
public string feature_code_desc { get; set; }
[Required]
[StringLength(45)]
public string feature_code_value { get; set; }
}
}