首页 > TAG信息列表 > productionStatus

徒手撸设计模式-备忘录模式

概念   参考链接: https://www.runoob.com/design-pattern/memento-pattern.html 代码案例 新增生产备忘录类,并存状态属性 @Setter @Getter public class MemoProduction { public MemoProduction(String state) { this.state = state; } private String