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
  • Entities
  • SequenceEntity.cs
  • wcs加入模拟权限模块
    d826dcf0
    liufu authored
    2019-02-26 20:39:49 +0800  
    Browse Code »
SequenceEntity.cs 398 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
using System.ComponentModel.DataAnnotations.Schema;

namespace HHECS.Model.Entities
{
    [Table("sequence")]
    public class SequenceEntity : BaseModel
    {
        /// <summary>
        /// 序列对应的code
        /// </summary>
        public string Code { get; set; }

        /// <summary>
        /// 序列1
        /// </summary>
        public int Sequence1 { get; set; }
    }
}