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.
19 lines
459 B
19 lines
459 B
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WMS_GIRAF_Interface.Entities;
|
|
|
|
[Table("V_MANAGE_IN_COUNT")]
|
|
public class V_MANAGE_IN_COUNT
|
|
{
|
|
[Column("START_DEVICE")]
|
|
public string START_DEVICE { get; set; }
|
|
|
|
[Column("END_DEVICE")]
|
|
public string END_DEVICE { get; set; }
|
|
|
|
[Column("MANAGE_COUNT")]
|
|
public int MANAGE_COUNT { get; set; }
|
|
|
|
[Column("ENABLE_CELL_COUNT")]
|
|
public int ENABLE_CELL_COUNT { get; set; }
|
|
}
|