123456789101112131415161718192021222324 |
- using System;
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace IMCS.CCS.Entitys.Dto
- {
-
- public class Rfid
- {
- public string trayNo { get; set; }
- public string uniqueCode { get; set; }
- // 消息
- public string msg { get; set; }
- // 状态
- public Boolean success { get; set; }
- }
-
- }
|