| 1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace ivf_tl_Entity.Entity.balance
- {
- public class Balance
- {
- public int houseSn { get; set; }
- public string tlSn { get; set; }
- public long id { get; set; }
- public string startTime { get; set; }
- public string endTime { get; set; }
- }
- }
|