123456789101112131415 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel.DataAnnotations;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace WCS.Entity.Protocol
- {
- public class WCS_BCRDATA : WCS_PROTOCOLDATA, IBCR
- {
- [StringLength(20)]
- public string CONTENT { get; set; }
- }
- }
|