1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace HNWD.Pregrant.Model
- {
- public class WD_SIPSevInfo : ModelBase
- {
- public String ID = "0";
- public string SIPSEV_IP = string.Empty;
- public string SIPSEV_MYSQLUSERNAME = string.Empty;
- public string SIPSEV_MYSQLPASSWORD = string.Empty;
- public string SIPSEV_DATETIME = string.Empty;
- }
- }
|