12345678910111213141516171819202122 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace HNWD.Pregrant.Model
- {
- public class ModelBase
- {
- [Ignore]
- public bool bSuccess = false;
- [Ignore]
- public String Code = "OK!";
- [Ignore]
- public Int32 Rows =0;
- [Ignore]
- public String Message = string.Empty;
- [Ignore]
- public string CurTime = System.DateTime.Now.ToString("yyyy/MM/dd HH:mm:ss");
- }
- }
|