12345678910111213141516171819202122232425262728 |
- namespace travelExport
- {
- using System;
- using System.Collections.Generic;
-
- public partial class Grp_InsuranceCost
- {
- public int Id { get; set; }
- public string GName { get; set; }
- public Nullable<decimal> RechargeCost { get; set; }
- public Nullable<int> CreateUserId { get; set; }
- public Nullable<System.DateTime> CreateTime { get; set; }
- public Nullable<int> DeleteUserId { get; set; }
- public string DeleteTime { get; set; }
- public string Remark { get; set; }
- public Nullable<int> IsDel { get; set; }
- }
- }
|