12345678910111213141516171819 |
- 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; }
-
- }
-
- }
|