永康嘉持电器有限公司MES后端API
yl
2024-10-09 622910b0f7cfdf90305844794e7451a611f8ae93
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; }
    }
}