加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Item.h 800 Bytes
一键复制 编辑 原始数据 按行查看 历史
Brain Yang 提交于 2023-04-13 18:33 . [ADD]Project files
//
// Created by YoungZM on 2023/4/12.
//
#ifndef EXPRESSMANAGEMENTSYSTEM_ITEM_H
#define EXPRESSMANAGEMENTSYSTEM_ITEM_H
#include <string>
#include <ctime>
class Item {
private:
std::string id;
std::string sender_id;
std::string receiver_id;
time_t time;
std::string origin;
std::string destination;
bool state;
std::string courier;
public:
std::string GetID();
std::string GetSenderID();
std::string GetReceiverID();
time_t GetTime();
std::string GetTimeString();
std::string GetOrigin();
std::string GetDestination();
bool GetState();
std::string GetCourier();
void SetState();
friend void LoadItems();
friend void DownloadItems();
friend void SendItem();
};
#endif //EXPRESSMANAGEMENTSYSTEM_ITEM_H
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化