123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.Baidu
- {
- public class ClientOCRDto
- {
- public string base64img { get; set; }
- }
- public class BaiduOCR_TableV2
- {
- public int row_start { get; set; }
- public int row_end { get; set; }
- public int col_start { get; set; }
- public int col_end { get; set; }
- public string words { get; set; }
- }
- }
|