47 lines
905 B
C#
47 lines
905 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace model
|
|
{
|
|
[Table("ww_grouptag")]
|
|
public class ww_grouptag
|
|
{
|
|
[Key]
|
|
public string corpid { get; set; }
|
|
|
|
[Key]
|
|
public string group_id { get; set; }
|
|
|
|
public string group_name { get; set; }
|
|
|
|
public long create_time { get; set; }
|
|
|
|
public bool deleted { get; set; }
|
|
|
|
public int order { get; set; }
|
|
|
|
/*
|
|
[{
|
|
"id": "TAG_ID1",
|
|
"name": "NAME1",
|
|
"create_time": 1557838797,
|
|
"order": 1,
|
|
"deleted": false
|
|
},
|
|
{
|
|
"id": "TAG_ID2",
|
|
"name": "NAME2",
|
|
"create_time": 1557838797,
|
|
"order": 2,
|
|
"deleted": true
|
|
}
|
|
]
|
|
*/
|
|
public string tag { get; set; }
|
|
}
|
|
}
|