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.
35 lines
884 B
35 lines
884 B
namespace Warehouse.Models.mesMysqlModel
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
[Table("js_mes.release_info")]
|
|
public partial class release_info
|
|
{
|
|
[Key]
|
|
[Column(Order = 0)]
|
|
[StringLength(30)]
|
|
public string module_id { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string workshop { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string create_op { get; set; }
|
|
|
|
[Key]
|
|
[Column(Order = 1)]
|
|
public DateTime create_date { get; set; }
|
|
|
|
[StringLength(10)]
|
|
public string banci { get; set; }
|
|
|
|
public sbyte? cell_replace_qty { get; set; }
|
|
|
|
[StringLength(20)]
|
|
public string work_order { get; set; }
|
|
}
|
|
}
|
|
|