Sign in

ECS / WCS_LiuzhouZhituo · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • WCS_LiuzhouZhituo
  • HHWCS.Model
  • DeviceTypeEntity.cs
  • 数据库实体类、PLC处理流程框架
    013c71e3
    liufu authored
    2018-08-23 14:44:42 +0800  
    Browse Code »
DeviceTypeEntity.cs 403 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HHWCS.Model
{
    public class DeviceTypeEntity
    {
        public int Id { get; set; }

        public string Code { get; set; }

        public string Name { get; set; }

        public string Description { get; set; }

        public bool Enable { get; set; }
    }
}