yl
2024-09-26 7d1ef31efa71b7514e1d912de43ff2096880ef92
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
 
namespace VueWebCoreApi.Models.AttendanceSetting
{
    public class AttendanceSave
    {
        /// <summary>
        /// 车间编码
        /// </summary>
        public string wkshop_code { get; set; }
        /// <summary>
        /// 打卡人员编码
        /// </summary>
        public string creatusercode { get; set; }
        /// <summary>
        /// 打卡日期
        /// </summary>
        public string creatdate { get; set; }
        /// <summary>
        /// 核算状态
        /// </summary>
        public string status { get; set; }
    }
}