1234567891011121314151617181920 |
- using Microsoft.WindowsAzure.Storage.Table;
- using System;
- using System.Collections.Generic;
- using System.Text;
- using TEAMModelOS.SDK.Context.Attributes.Table;
- namespace TEAMModelOS.Model.Core.Models
- {
- [TableSpace(Name = "Core")]
- public class Product : TableEntity
- {
- public string Name { get; set; }
- public string Code { get; set; }
- public int Type { get; set; }
- public int Status { get; set; }
- public string SchoolCode { get; set; }
- public string SchoolName { get; set; }
- }
- }
|